function initDoc() {	if (navigator.appName.indexOf("Netscape") != -1) 		document.write('<link rel=stylesheet type="text/css" href="NN_styles.css">');	else		document.write('<link rel=stylesheet type="text/css" href="MSIE_styles.css">');}function newWin(url) {	var w;	w = window.open(url, "", "width=screen.availWidth,height=screen.availHeight,scrollbars=yes,resizable=yes,status=no");	w.focus();}function checkForm(theForm) {	var atSign, dot;	if (theForm.ResName.value.length < 3) {		alert("Please enter your first name");		theForm.ResName.focus();		return false;	}	if (theForm.ResEmail.value == "") {		alert("Please enter your e-mail address");		theForm.ResEmail.focus();		return false;	}	atSign = theForm.ResEmail.value.indexOf("@");	dot = theForm.ResEmail.value.indexOf(".");	if (atSign == -1 || dot == -1 || dot < atSign || atSign < 1 || dot < 3) {		alert("Please correct your e-mail address.  The correct form is: account@domain.domaintype");		theForm.ResEmail.focus();		return false;	}	return true;}