function disp(){	var setting = "WIDTH=680,HEIGHT=480,SCROLLBARS=1,RESIZABLE=1";	var newW; newW = window.open("contact-subw.html","STATE",setting);	newW.moveTo(10,10);	}function disp2(){	if(document.contactform.COUNTRY.selectedIndex== 39){	alert('Please choose Your State');	disp();	}	}function dispList(){	if(document.contactform.COUNTRY.selectedIndex== 39){	alert('Please choose Your State');	showBox();	}	}function checkContactform(){	var name = document.contactform.NAME;	if(name.value== ""){ 	alert('Please fill Your Name.');	name.focus();return(false);	}	var name = document.contactform.COUNTRY;	var name2 = document.contactform.STATE;	if(name.selectedIndex== 0){	alert('Please choose Your Country');	return(false);	}	if(name.selectedIndex== 39 && name2.value== ""){	alert('Please choose Your State');	disp();	return(false);	}	if(name.selectedIndex!= 39 && name2.value!= ""){	alert('State Field is unnecessary except U.S.A.');	name2.value= "";	return(false);	}	var name = document.contactform.TEL;	if(name.value== ""){ alert('Please fill Phone Number.');	name.focus();return(false);	}	var name = document.contactform.EMAIL;	if(name.value== ""){ alert('Please fill E-mail address');	name.focus();return(false);	}	var name = document.contactform.MESSAGE;	if(name.value== ""){ alert('Please fill Message');	name.focus();return(false);	}	flg = confirm('Please review the information, then click the OK button.');	if(flg== false){	return(false);	}}function inputData(N){	var StateName = unescape(N);	document.contactform.STATE.value = StateName;	}function inputData_php(N){	var StateName =N;	document.contactform.STATE.value = StateName;	clearBox();	}