// JavaScript Document

function appInstructions()
{
if (window.screen.width>='1024') {
var height = 695           		//Set height
var width = 650            		//Set width
var name = "newwin"      	      //Set window name
var top = 2               	   //Set distance from top
var left = 2              	//Set distance from bottom
window.open("http://www.draper.com/careers/instructions.html", name, "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,Capability Leadies=no,location=no,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);
}
else {
var height = 640           		//Set height
var width = 480            		//Set width
var name = "newwin"      	      //Set window name
var top = 2               	   //Set distance from top
var left = 2               	//Set distance from bottom
window.open("http://jobs.draper.com", name, "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,Capability Leadies=no,location=no,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);
}
}


<!--
// This function will open the job/people soft search window
// to a location 20 pixels to the left and 5 pixels from the top,
// maximize the browser to the full window settings and redirect
// the browser to open to e-recruit with no address bar, no side scroll bar
function jobS()
{
if (window.screen.width>='1024') {
var height = 800           		//Set height
var width = 700            		//Set width
var name = "newwin"      	      //Set window name
var top = 5               	   //Set distance from top
var left = 20               	//Set distance from bottom
window.open("http://jobs.draper.com", name, "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,Capability Leadies=no,location=no,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);
}
else {
var height = 680           		//Set height
var width = 540            		//Set width
var name = "newwin"      	      //Set window name
var top = 5               	   //Set distance from top
var left = 20               	//Set distance from bottom
window.open("http://jobs.draper.com", name, "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,Capability Leadies=no,location=no,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);
}
}
