
		
		<!--
		function ValidateEmail(theinput)
		{
 	          s=theinput.value
  	          if(s.search)
   	            {
                    return (s.search(new RegExp("^([-!#$%&'*+./0-9=?A-Z^_`a-z{|}~ ])+@([-!#$%&'*+/0-9=?A-Z^_`a-z{|}~ ]+\\.)+[a-zA-Z]{2,4}$","gi"))>=0)
        	    }
        	 if(s.indexOf)
                   {
                     at_character=s.indexOf('@')
                     if(at_character<=0 || at_character+4>s.length)
                     return false
                    }
        	if(s.length<6)
                    return false
                else
                    return true
	       }
	       
		function eeq(theform)
		{
  		      if(theform.nama.value=='')
    			    {
       			         alert('Isi nama anda !')
          			 theform.nama.focus()
             	                 return false
        		     }	
        		     
        	if(theform.email.value==''
        		|| ValidateEmail(theform.email)==false)
                            {
               			 alert('Email kosong atau format email salah !')
                		 theform.email.focus()
                                 return false
        		    }
        		          		       
        		if(theform.alamat.value=='')
        		    {
              		         alert('Isi alamat anda !')
                		 theform.alamat.focus()
                                 return false
                     }
				if(theform.kota.value=='')
        		    {
              		         alert('Isi Kota anda !')
                		 theform.kota.focus()
                                 return false
                     }                            
                if(theform.telepon.value==''|| isNaN(parseInt(theform.telepon.value,15)))
        		   {
             			 alert('Isi nomor telepon anda !')
               			 theform.telepon.focus()
                		 return false
        		    }
				 if(theform.kodepos.value=='')
        		   {
             			 alert('Isi kode pos anda !')
               			 theform.kodepos.focus()
                		 return false
        		    }
				
        
        	 	return true
             }

	    //-->
	