<!--
function emailvalidate_form ( )
{
 		if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.xlist.Email.value))
 		{
		return (true)

		}
		alert("Invalid E-mail Address! Please re-enter.")
		document.xlist.Email.focus(); 
		 valid= false;
}

function val_contact_form ( )
{
    valid = true;
    if ( document.xlist.Name.value == "" )
    {
        alert ( "Please fill in Name." );
         document.xlist.Name.focus(); 
        valid = false;
    }

       else if( document.xlist.Address.value == "" )
    {
        alert ( "Please fill in Address." );
         document.xlist.Address.focus(); 
        valid = false;
    }

        else if( document.xlist.Telephone.value == "" )
    {
        alert ( "Please fill in Telephone." );
         document.xlist.Telephone.focus(); 
        valid = false;
    }
            
   emailvalidate_form ( );      
   return valid;

}

function val_updates_form ( )
{
    valid = true;
    if ( document.xlist.FullName.value == "" )
    {
        alert ( "Please fill in FullName." );
         document.xlist.FullName.focus(); 
        valid = false;
    }
    else if( document.xlist.Country.value == "Afghanistan" )
    {
        alert ( "Possible Spam." );
         document.xlist.Country.focus(); 
        valid = false;
    }
   else if( document.xlist.Country.value == "-- Select Country --" )
    {
        alert ( "Please fill in Country." );
         document.xlist.Country.focus(); 
        valid = false;
    }
   
    else if( document.xlist.Telephone.value == "123456" )
    {
        alert ( "Possible Spam." );
         document.xlist.Telephone.focus(); 
      valid = false;
    }
          
   emailvalidate_form ( );      
   return valid;

}


function val_sponsorship_form ( )
{
    valid = true;
    if ( document.xlist.First_Name.value == "" )
    {
        alert ( "Please fill in First Name." );
         document.xlist.First_Name.focus(); 
        valid = false;
    }

    else if( document.xlist.Last_Name.value == "" )
    {
        alert ( "Please fill in Last Name." );
         document.xlist.Last_Name.focus(); 
        valid = false;
    }
    
        else if( document.xlist.Address.value == "" )
    {
        alert ( "Please fill in Address." );
         document.xlist.Address.focus(); 
        valid = false;
    }
         else if( document.xlist.City.value == "" )
    {
        alert ( "Please fill in City." );
         document.xlist.City.focus(); 
        valid = false;
    }
       else if( document.xlist.Country.value == "-- Select Country --" )
    {
        alert ( "Please fill in Country." );
         document.xlist.Country.focus(); 
        valid = false;
    }
           else if( document.xlist.Telephone.value == "" )
    {
        alert ( "Please fill in Telephone." );
         document.xlist.Telephone.focus(); 
        valid = false;
    }
       
  
   emailvalidate_form ( );      
   return valid;

}

function val_media_form ( )
{
    valid = true;
   if ( document.xlist.Company.value == "" )
    {
        alert ( "Please fill in Company." );
         document.xlist.Company.focus(); 
        valid = false;
    }

    else if ( document.xlist.First_Name.value == "" )
    {
        alert ( "Please fill in First Name." );
         document.xlist.First_Name.focus(); 
        valid = false;
    }

    else if( document.xlist.Last_Name.value == "" )
    {
        alert ( "Please fill in Last Name." );
         document.xlist.Last_Name.focus(); 
        valid = false;
    }
    
        else if( document.xlist.Address.value == "" )
    {
        alert ( "Please fill in Address." );
         document.xlist.Address.focus(); 
        valid = false;
    }
         else if( document.xlist.City.value == "" )
    {
        alert ( "Please fill in City." );
         document.xlist.City.focus(); 
        valid = false;
    }
       else if( document.xlist.Country.value == "-- Select Country --" )
    {
        alert ( "Please fill in Country." );
         document.xlist.Country.focus(); 
        valid = false;
    }
           else if( document.xlist.Telephone.value == "" )
    {
        alert ( "Please fill in Telephone." );
         document.xlist.Telephone.focus(); 
        valid = false;
    }
       
  
   emailvalidate_form ( );      
   return valid;

}

function val_exhibit_form ( )
{
    valid = true;
    if ( document.xlist.Title.value == "" )
    {
        alert ( "Please fill in Title." );
         document.xlist.Title.focus(); 
        valid = false;
    }

    else if( document.xlist.First_Name.value == "" )
    {
        alert ( "Please fill in First_Name." );
         document.xlist.First_Name.focus(); 
        valid = false;
    }
    
        else if( document.xlist.Last_Name.value == "" )
    {
        alert ( "Please fill in Last_Name." );
         document.xlist.Last_Name.focus(); 
        valid = false;
    }
         else if( document.xlist.Company.value == "" )
    {
        alert ( "Please fill in Company." );
         document.xlist.Company.focus(); 
        valid = false;
    }
       else if( document.xlist.Address.value == "" )
    {
        alert ( "Please fill in Address." );
         document.xlist.Address.focus(); 
        valid = false;
    }
           else if( document.xlist.City.value == "" )
    {
        alert ( "Please fill in City." );
         document.xlist.City.focus(); 
        valid = false;
    }
    else if( document.xlist.Country.value == "-- Select Country --" )
    {
        alert ( "Please fill in Country." );
         document.xlist.Country.focus(); 
        valid = false;
    }
else if( document.xlist.SMRequired.value == "" )
    {
        alert ( "Please fill in SMRequired." );
         document.xlist.SMRequired.focus(); 
        valid = false;
    }
else if( document.xlist.Products.value == "" )
    {
        alert ( "Please fill in Products." );
         document.xlist.Products.focus(); 
        valid = false;
    }
      
   emailvalidate_form ( );      
   return valid;

}
//-->