function newwindow(where,width,height) {
	window.open(where, "nwwindow", "Width=" + width + ",Height=" + height + ",Resizable=No,Scrollbars=No,Menubar=No,Toolbar=No,Menu=No,Status=No,Location=No,screenx=0,screeny=0,left=0,top=0");
}
function ValidateMail(){
	elForm = document.frmMail;
	t_name = elForm.Name.value;
	t_email = elForm.Email.value;
	t_phone = elForm.phone.value;
	t_country = elForm.country.value;
	t_select = elForm.select_box.value;
	if (t_name == "")
	{
		alert("Please Enter the Name");
		return false;
	}
	if (t_email == "")
	{
		alert("Please Enter the Email");
		return false;
	}
	elForm.Name.value = ""
	elForm.Email.value =""
	elForm.phone.value = ""
	elForm.country.value= ""
	elForm.select_box.value = ""
	
	
	newwindow('send_mail.php?N='+t_name+'&E='+t_email+'&P='+t_phone+'&C='+t_country+'&K='+t_select+'','500','300');
	return false;
}

function rReset() {


document.frmMail.Name.value = '';
document.frmMail.Email.value = '';
document.frmMail.phone.value = '';
document.frmMail.Email.value = '';
document.frmMail.country.value = '';

return false;
}