

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()};
	NewWin.resizeTo(w,h);	
	}
	
	
function careersWindow(url){
	NewWin=window.open(url,'careersWindow','resizable=yes,toolbar=yes,scrollbars=yes,status=yes,position=absolute,left=10,top=0,height=350,width=775');
	if(window.focus){
		NewWin.focus();
		}
	}

