function launchNewsPopup () {	if ( 1 == 1 ) {		window.open( 'news_popup.htm','news','location=no,status=no,resizable=no,scrollbars=no, height=200, width=200' );	}}function getBrowserType() {isNetscape4 = false; isNetscape6 = false; isIE = false; isIE4 = false;var browserName = navigator.appName;var browserVer = parseInt(navigator.appVersion);if (browserName == "Microsoft Internet Explorer" ) {	if (navigator.appVersion.indexOf("MSIE 4") == -1 ) {		isIE = true; 	} else {		isIE4 = true;		}	} if (browserName == "Netscape") {	if (browserVer >=5) {		isNetscape6 = true;	} else {	isNetscape4 = true;	}}}function submit_password(username,password) {	if ( username=="Robbie Sherman" & password=="chitty" ) {		location.replace('./inkas_docs.htm');	} else {		alert('Your username or password were entered incorrectly.\n\nPlease try again.');		document.forms[0].username.value='';		document.forms[0].password.value='';		document.forms[0].username.focus();	}}
