function fullcheck()
{
  var str=document.subscribeform.email.value;
//alert(str);

     if (document.subscribeform.name.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Name.");
           document.subscribeform.name.select(); 
           return false;
	    }  
				     if (document.subscribeform.email.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Email Address.");
           document.subscribeform.email.select(); 
           return false;
	    }  
		
		
				if ((document.subscribeform.email.value).indexOf(" ")>=0)
		{
		alert ("Blank space not allowed inside email!");
		document.subscribeform.email.select();
		return false;
		}
	
		if (document.subscribeform.email.value.indexOf("@",1) == -1)
		{
			alert("Invalid E-Mail address");
			document.subscribeform.email.focus();
			document.subscribeform.email.select();
			return(false);
		}
		if (document.subscribeform.email.value.indexOf("@") == 0)
		{
			alert("Invalid E-Mail address");
			document.subscribeform.email.focus();
			document.subscribeform.email.select();
			return(false);
		}
		if (document.subscribeform.email.value.indexOf(".",5) == -1)
		{
			alert("Invalid E-Mail address");
			document.subscribeform.email.focus();
			document.subscribeform.email.select();
			return(false);
		}
		if (document.subscribeform.email.value.indexOf(".") == 0)
		{
			alert("Invalid E-Mail address");
			document.subscribeform.email.focus();
			document.subscribeform.email.select();
			return(false);
		}
		
		if ((document.subscribeform.email.value.lastIndexOf(".")) -(document.subscribeform.email.value.indexOf("@"))<4 )
		{
		
			alert("Invalid E-Mail address");
			document.subscribeform.email.focus();
			document.subscribeform.email.select();
			return(false);
		}
}


function fullcheck1()
{
  var str=document.bookingform.email.value;
//alert(str);

     if (document.bookingform.name.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Name.");
           document.bookingform.name.select(); 
           return false;
	    }  
				     if (document.bookingform.email.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Email Address.");
           document.bookingform.email.select(); 
           return false;
	    }  
		
		
				if ((document.bookingform.email.value).indexOf(" ")>=0)
		{
		alert ("Blank space not allowed inside email!");
		document.bookingform.email.select();
		return false;
		}
	
		if (document.bookingform.email.value.indexOf("@",1) == -1)
		{
			alert("Invalid E-Mail address");
			document.bookingform.email.focus();
			document.bookingform.email.select();
			return(false);
		}
		if (document.bookingform.email.value.indexOf("@") == 0)
		{
			alert("Invalid E-Mail address");
			document.bookingform.email.focus();
			document.bookingform.email.select();
			return(false);
		}
		if (document.bookingform.email.value.indexOf(".",5) == -1)
		{
			alert("Invalid E-Mail address");
			document.bookingform.email.focus();
			document.bookingform.email.select();
			return(false);
		}
		if (document.bookingform.email.value.indexOf(".") == 0)
		{
			alert("Invalid E-Mail address");
			document.bookingform.email.focus();
			document.bookingform.email.select();
			return(false);
		}
		
		if ((document.bookingform.email.value.lastIndexOf(".")) -(document.bookingform.email.value.indexOf("@"))<4 )
		{
		
			alert("Invalid E-Mail address");
			document.bookingform.email.focus();
			document.bookingform.email.select();
			return(false);
		}
}



function fullcheck2()
{
  var str=document.contactform.email.value;
//alert(str);

     if (document.contactform.name.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Name.");
           document.contactform.name.select(); 
           return false;
	    }  
				     if (document.contactform.email.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Email Address.");
           document.contactform.email.select(); 
           return false;
	    }  
		
		
				if ((document.contactform.email.value).indexOf(" ")>=0)
		{
		alert ("Blank space not allowed inside email!");
		document.contactform.email.select();
		return false;
		}
	
		if (document.contactform.email.value.indexOf("@",1) == -1)
		{
			alert("Invalid E-Mail address");
			document.contactform.email.focus();
			document.contactform.email.select();
			return(false);
		}
		if (document.contactform.email.value.indexOf("@") == 0)
		{
			alert("Invalid E-Mail address");
			document.contactform.email.focus();
			document.contactform.email.select();
			return(false);
		}
		if (document.contactform.email.value.indexOf(".",5) == -1)
		{
			alert("Invalid E-Mail address");
			document.contactform.email.focus();
			document.contactform.email.select();
			return(false);
		}
		if (document.contactform.email.value.indexOf(".") == 0)
		{
			alert("Invalid E-Mail address");
			document.contactform.email.focus();
			document.contactform.email.select();
			return(false);
		}
		
		if ((document.contactform.email.value.lastIndexOf(".")) -(document.contactform.email.value.indexOf("@"))<4 )
		{
		
			alert("Invalid E-Mail address");
			document.contactform.email.focus();
			document.contactform.email.select();
			return(false);
		}
}