function validateForm()
{

var x=document.forms["paymentinfo"]["fullname"].value
	if (x==null || x=="")
	{
	  alert("Name must be filled out");
	  return false;
	}
  
var x=document.forms["paymentinfo"]["email"].value
	if (x==null || x=="")
	{
	  alert("Email must be filled out");
	  return false;
	}
	
var x=document.forms["paymentinfo"]["address"].value
	if (x==null || x=="")
	{
	  alert("Address must be filled out");
	  return false;
	}
	
var x=document.forms["paymentinfo"]["city"].value
	if (x==null || x=="")
	{
	  alert("City must be filled out");
	  return false;
	}
	
var x=document.forms["paymentinfo"]["postalcode"].value
	if (x==null || x=="")
	{
	  alert("Postal Code must be filled out");
	  return false;
	}
	
var x=document.forms["paymentinfo"]["phone"].value 
	if (x==null || x=="")
	{
	  alert("Phone must be filled out");
	  return false;
	}
	
var x=document.forms["paymentinfo"]["fulldomain"].value
	if (x==null || x=="")
	{
	  alert("Domain must be filled out");
	  return false;
	}
	
var x=document.forms["paymentinfo"]["ccname"].value
	if (x==null || x=="")
	{
	  alert("Credit Card Name must be filled out");
	  return false;
	}
	
var x=document.forms["paymentinfo"]["ccnumber"].value
	if (x==null || x=="")
	{
	  alert("Credit Card Number must be filled out");
	  return false;
	}
	
	

}
