
/*
function careersWindow1(url,height,width){
	h= height;
	w= width;
	NewWin=window.open(url,"careersWindow","resizable=yes,toolbars=yes,scrollbars=yes,status=no,position=absolute,left=0,top=0,height='+ h + ' width=' + w");if(window.focus){NewWin.focus()};
	}
	*/
	
function careersWindow(url){
	NewWin=window.open(url,'careersWindow','resizable=yes,toolbar=yes,scrollbars=yes,status=yes,position=absolute,left=0,top=0,height=600,width=800');
	if(window.focus){
		NewWin.focus();
		}
	}

