function openwin1(file,Iwidth,Iheight) {
   var newWin1=window.open(file,'nWin1','x=0,y=0,toolbar=no,location=no,directories=no,status=no,scrollbars=yes, copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left=20,top=20');
}
function openwin2(file,Iwidth,Iheight) {
   var newWin2=window.open(file,'nWin2','x=0,y=0,toolbar=no,location=no,directories=no,status=no,scrollbars=yes, copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left=20,top=20');
}
function checkinfo(){
	var doc=document.form2;
	if(!doc.Company_Name.value.length){
		alert("Please Enter the Company Name.");
		doc.Company_Name.focus();
		return false;
	}
	if(!doc.Your_Name.value.length){
		alert("Please Enter the Your Name.");
		doc.Your_Name.focus();
		return false;
	}
	if(!doc.username.value.length){
		alert("Please Enter the EmailID.");
		doc.username.focus();
		return false;
	}
	if(doc.username.value.indexOf("@")== -1 || doc.username.value.indexOf(".")== -1){
		alert("Error in EmailID.\n");
		doc.username.value="";
		doc.username.focus();
		return false;
	}
	if(!doc.phone2.value.length){
		alert("Please Enter the Country Code.");
		doc.phone2.focus();
		return false;
	}
	if(!doc.phone12.value.length){
		alert("Please Enter the Area Code.");
		doc.phone12.focus();
		return false;
	}
	if(!doc.phone41.value.length){
		alert("Please Enter the Telephone No.");
		doc.phone41.focus();
		return false;
	}
	if(!doc.Country.value.length){
		alert("Please Enter the Country Name.");
		doc.Country.focus();
		return false;
	}
	if(!doc.Requirments.value.length){
		alert("Please Enter the Requirements.");
		doc.Requirments.focus();
		return false;
	}
}