var isNS4, isIE4, isIE5, isNS6;

isNS4 = (document.layers) ? true : false;
isIE4 = (document.all && !document.getElementById) ? true : false;
isIE5 = (document.all && document.getElementById) ? true : false;
isNS6 = (!document.all && document.getElementById) ? true : false;

//alert(isNS4 + "/" + isIE4 + "/" + isIE5 + "/" + isNS6)
if (isNS4) {
	//1 = Invalid Page; 2 = Not Support
	location.href = "/career/ErrorPage/ErrorPage.asp?ErrID=2&"+Global_Random();
}

function OpenWin(theURL,winName,features) {
	window.open(theURL,winName,features);
}