<!-- 
function clearme(fe,txt){
	if (fe.value == txt){
		fe.value = "";
	}
	return;
}	
-->
<!--
function validateContact(){
	if ((document.contactForm.txtName.value=="")||(document.contactForm.txtEMail.value=="")
	||(document.contactForm.txtMessage.value=="")){
		alert ("Please fill in all of the required fields");
		return false
	}
	if (echeck(document.contactForm.txtEmail.value)==false){
		document.contactForm.txtEmail.value=""
		document.contactForm.txtEmail.focus()
		return false
	}
	return true
}
function validateSignup(){
	if ((document.signupForm.txtEmail.value=="")||(document.signupForm.txtEmail.value=="Enter your email here..")){
		alert ("Please fill in all of the required fields");
		return false
	}
	if (echeck(document.signupForm.txtEmail.value)==false){
		document.signupForm.txtEmail.value=""
		document.signupForm.txtEmail.focus()
		return false
	}
	return true
}
function validateRemove(){
	if ((document.removeForm.txtEmail.value=="")||(document.removeForm.txtEmail.value=="Enter your email here..")){
		alert ("Please fill in all of the required fields");
		return false
	}
	if (echeck(document.removeForm.txtEmail.value)==false){
		document.removeForm.txtEmail.value=""
		document.removeForm.txtEmail.focus()
		return false
	}
	return true
}
function echeck(str) {
	var at="@"
	var dot="."
	var lat=str.indexOf(at)
	var lstr=str.length
	var ldot=str.indexOf(dot)
	if (str.indexOf(at)==-1){
	   alert("Invalid email address")
	   return false
	}
	if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
	   alert("Invalid email address")
	   return false
	}
	if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
		alert("Invalid email address")
		return false
	}
	if (str.indexOf(at,(lat+1))!=-1){
		alert("Invalid email address")
		return false
	}
	if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
		alert("Invalid email address")
		return false
	}
	if (str.indexOf(dot,(lat+2))==-1){
		alert("Invalid email address")
		return false
	}	
	if (str.indexOf(" ")!=-1){
		alert("Invalid email address")
		return false
	}
	return true					
}
-->