    <!--
	function testInput() {
	var Email =  new String(document.inputForm.Email.value);
	var Correct = true;
	CharCount=1;
	strLength=Email.length;
	while ((CharCount < strLength) && (Email.charAt(CharCount) != '@'))
	{
		CharCount++
	}
	if ((CharCount>= strLength) || (Email.charAt(CharCount) != '@')) 
	{ 
		alert ('Email address not valid.')
		Correct = false;
	}
	else
	{
		CharCount += 2;
	}
	
	if (Correct==true) {
		while ((CharCount < strLength) && (Email.charAt(CharCount) != '.'))
		{
			CharCount++
		}
		if ((CharCount>= strLength - 1) || (Email.charAt(CharCount) != '.'))
		{
			alert ('Email address not valid.')
			Correct = false;
		}
	}
	
	return Correct
	}
	
	function focusEmailField(obj,act) {
		if (act=='focus') {
			if (obj.value=='ENTER YOUR E-MAIL') {
				obj.value=''
			}
		} else if (act=='blur') {
			if (obj.value=='') {
				obj.value='ENTER YOUR E-MAIL'
			}
		}
	}
	
	
	function headMenuOver(obj,img) {
		obj.src=img
	}
	
	
	function focusSearchBox(obj) {
		if (obj.value=='SEARCH SITE') {
			obj.value='';
		}
	}
	function blurSearchBox(obj) {
		if (obj.value=='') {
			obj.value='SEARCH SITE';
		}
	}
    -->