
// For ChinatourGuide/ChinaTourGuide_Details.php
function check_items(){
		
	var emailStr=document.form1.username.value; 
	var emailPat=/^(.+)@(.+)$/; 
	var matchArray=emailStr.match(emailPat); 
	if (matchArray==null) 	{ 
		alert("Please Enter Correct E-mail") 
		document.form1.username.focus() 
		return false; 
		}
		
	if (document.form1.password.value=="") {
		alert("Please Enter Correct Password");					
		document.form1.password.focus() 
		return false;
		}

	if ((document.form1.cls1.checked!=true) &&(document.form1.cls2.checked!=true)) {
		alert("Please Choose Your Category!");
		return false;
		}	

	
	return true;
}


function check_items2(){
		
	var emailStr=document.form2.username.value; 
	var emailPat=/^(.+)@(.+)$/; 
	var matchArray=emailStr.match(emailPat); 
	if (matchArray==null) 	{ 
		alert("Please Enter Correct E-mail") 
		document.form2.username.focus() 
		return false; 
		}
		
	if (document.form2.password.value=="") {
		alert("Please Enter Correct Password");					
		document.form2.password.focus() 
		return false;
		}
	
	return true;
}
	
	
	
	
function sentto(){   
if(document.form1.cls1.checked==true){   
document.form1.action="../cs/cs_login_process.php" ;  
}   
 
if(document.form1.cls2.checked==true){   
	document.form1.action="../iva/login_process.php" ;
}
document.form1.submit; 
}  


function cls1_change(){
if (document.form1.cls1.checked==true) {
	document.form1.cls2.checked=false
}
}
function cls2_change(){
if (document.form1.cls2.checked==true) {
	document.form1.cls1.checked=false
}
}