    function RequiredFieldShippingAddress()
  
      { 
          
        var  BillAdd =document.Form1.txtBillingAddress;
        var  ShipAdd =document.Form1.txtShippingAddress;
        var BillCity = document.Form1.txtBillingCity; 
        var BillState =  document.Form1.txtBillingState; 
        var BillCountry =  document.Form1.txtBillingCountry; 
        var BillPhone = document.Form1.txtPhoneNumber; 
        
        var ShipCity = document.Form1.txtShippingCity; 
        var ShipState = document.Form1.txtShippingState; 
        var ShipCountry = document.Form1.txtShippingCountry; 
        var ShipPhone = document.Form1.txtShippingPhone; 
    if(BillAdd.value=="")
	        {
	       window.alert("Billing Address is mandatory");
           BillAdd.focus();
           return false;
             } 
   else if(BillCity.value=="")
	        {
	       window.alert("Billing City name is mandatory");
            BillCity.focus();
            return false;
             } 
   else if(BillState.value=="")
	        {
	       window.alert("Billing State name is mandatory");
            BillState.focus();
            return false;
             } 
    else if(BillCountry.value=="")
	        {
	       window.alert("Billing Country name is mandatory");
            BillCountry.focus();
            return false;
             }  
    else if(BillPhone.value=="")
	        {
	       window.alert("Billing PhoneNumber is mandatory");
            BillPhone.focus();
            return false;
             } 
    else if(ShipAdd.value=="")
	        {
	       window.alert("Shipping Address is mandatory");
            ShipAdd.focus();
            return false;
             } 
             
   else if(ShipCity.value=="")
	        {
	       window.alert("Shipping City name is mandatory");
            ShipCity.focus();
            return false;
             } 
  else if(ShipState.value=="")
	        {
	       window.alert("Shipping State nameis mandatory");
            ShipState.focus();
            return false;
             } 
   else if(ShipCountry.value=="")
	        {
	       window.alert("Shipping Country name is mandatory");
            ShipCountry.focus();
            return false;
             } 
  else if(ShipPhone.value=="")
	        {
	       window.alert("ShippingPhone number is mandatory");
            ShipPhone.focus();
            return false;
             } 
             
       else
           
              return confirm('Do you Checked all information');      
            
                           
            
       }
              
  function  RequiredFieldlinktous()
  
      {
    sWebsiteTitle=document.Feedback.txtWebsitetitle;
    WUrl=document.Feedback.txtWebsiteUrl;
    WSearch=document.Feedback.ddlSearch;
    WEmail=document.Feedback.txtYourEmail;
    WSitelink=document.Feedback.txtWhereLinkSite;
    WDescription=document.Feedback.txtWebsiteDescription;
   
    
	if(sWebsiteTitle.value=="")
	        {
	       window.alert("Website Title  field is mandatory");
            sWebsiteTitle.focus();
            return false;
             }
               
     else if(WDescription.value=="")
	        {
	       window.alert("Website Description   is Mandatory");
            WDescription.focus();
            return false;
             } 
                       
     else if(WUrl.value=="")
	        {
	       window.alert("Website URL is Mandatory");
            WUrl.focus();
            return false;
             }   
     
      
      else  if(WEmail.value=="")
	        {
	       window.alert("Email  is Mandatory");
            WEmail.focus();
            return false;
             } 
     else if(WEmail.value!="" && (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(WEmail.value))==false)
        
        {
        alert("Invalid E-mail Address! Please re-enter.")
        WEmail.value="";
	    WEmail.focus();
        return false;
        }             
              
      
    else if(WSitelink.value=="")
	        {
	       window.alert("Where is the link in your site  is Mandatory");
           WSitelink.focus();
            return false;
             } 
               
   else if(WSearch.value=="Select a option"||WSearch.value=="")
	        {
	       window.alert("Please select a option");
            WSearch.focus();
            return false;
             }  
  } 
  
                 