<!--This launches a new browser window for available positions -->
function Launchjobs (URL) {
	var NewWin = window.open(URL, "NewWin", "width=400, height=300");
	NewWin.focus();
}

<!--This launches a new browser window for other sites -->
function LaunchNew (URL) {
	var NewWin = window.open(URL, "NewWin", "scrollbars=0, resizable=0, width=500, height=450");
	NewWin.focus();
}

<!--This launches a new browser window for hypertext links -->
function Launchtext (URL) {
	var NewWin = window.open(URL, "NewWin", "width=400, height=400");
	NewWin.focus();
}

<!--This launches a new browser window for hypertext links -->
function Launchcontact (URL) {
	var NewWin = window.open(URL, "NewWin", "scrollbars=0, resizable=0, width=500, height=425");
	NewWin.focus();
}

<!--This launches a new browser window for results login screen -->
function Launchlogin (URL) {
	var NewWin = window.open(URL, "NewWin", "width=430, height=230");
	NewWin.focus();
}

<!--This launches a new browser window for results -->
function LaunchUrl (URL) {
	var Newurl = window.open(URL, "Newurl", "width=650, height=500, scrollbars=1, resizable=1");
	Newurl.focus();
}

<!--This launches a new browser window for hypertext links -->
function LaunchForm (URL) {
	var FormWin = window.open(URL, "FormWin", "scrollbars=0, resizable=0, width=659, height=451");
	FormWin.focus();
}


