// JavaScript Document
<!--//
	this.ver=navigator.appVersion
	this.agent=navigator.userAgent.toLowerCase()
	this.dom=document.getElementById?1:0
	this.ns4=(!this.dom && document.layers)?1:0;

	if (!(this.ns4)) { 
		document.writeln('<style type="text/css">');
		document.writeln('.textbox { border: 1px solid #003300; }');
		document.writeln('</style>');
	}

	function FormReset() {
		document.forms[0].reset();
		document.forms[0].elements[0].focus();
	}
	
	function setFocus() {
		document.frm.elements[0].focus();
	}
	
	function validForm() {
		var elem = 9;
		
		for (i=0; i<elem; i++) {
			if (document.frm.elements[i].value=='') {
				alert ("All fields of information are required!\n Please fill in the blank field.\n Thank you!");
				document.frm.elements[i].focus();
				return false;
				break;
			}
		}
		
		if ((document.frm.email.value.indexOf(".")<1)&&(document.frm.email.value.indexOf("@")<1)) {
			alert ("Please fill in your email address in the right format.\nEx.: yourname@domain_name.com");
			document.frm.email.focus();
			return false;
		}
	}
	
	function openBig(pic)
	{
		url = "popup.php?src=" + pic;
		window.open(url,"ydPop", "width=560,height=560,resizable=yes,scrollbars=yes");
	}
//-->

