
function formCheck(){



	var my_email = document.form1.Email.value
	
	if ((my_email.indexOf("@")==-1) || (my_email.indexOf(".")==-1))
		{
		alert ("Please provide a valid email address.");
		return false;	
		}
	if (my_email.charAt(0)=="@")		
		{
		alert ("Please provide a valid email address.");
		return false;			
		}
	if (my_email.indexOf(" ")!=-1)		
		{
		alert ("Please provide a valid email address.");
		return false;			
		}
		else {		
			
		
		document.form1.action = document.form1.actionpath.value;			
						
		document.getElementById("state_select").style.display = "none";
		document.getElementById("state_text").style.display = "block";		
		
		OEmailSubmit();
				
		// return true;			
		}
						
}





function OEmailSubmit(){
	
		var s=s_gi('symanteccom,symantechho');
		s.linkTrackVars='events';
		s.linkTrackEvents='event6';
		s.events='event6';
		s.tl(this,'o','N360_EMAILSUBMIT');
}

