// JavaScript Document
function openpopup(a){
var popurl="PATH TO PAGE YOU CREATED"
winpops=window.open(a,"","width=780,height=550,")
}
function clear_textbox()
{
//alert("hrlo")
if (document.text_form.u_input.value == "Enter Your Email")
document.text_form.u_input.value = "";
} 

function checkEmail()
 {
if((document.text_form.u_input.value.indexOf('.',0)=="-1")||(document.text_form.u_input.value.indexOf('@',0)=="-1")) 
    	{ 
        alert("Invalid e-mail") 
       document.text_form.u_input.focus();
         return false; 
   		 }
		 else
		 {
		document.text_form.action ="email.asp";
	document.text_form.submit();
		 }
}
function checkEmailcomt()
 {
if((document.comment.email.value.indexOf('.',0)=="-1")||(document.comment.email.value.indexOf('@',0)=="-1")) 
    	{ 
        alert("Invalid e-mail") 
       document.comment.email.focus();
         return false; 
   		 }
		 else
		 {
		document.comment.action ="addresp.asp?type=addcomment";
	document.comment.submit();
		 }
}

