function validate_form(objfrm)
{
	notice="Sorry, we cannot complete your request.\n\n";
	msg=notice;
	var anum=/(^\d+$)|(^\d+\.\d+$)/;
	var emailExp= /^\w+(\-\w+)*(\.\w+(\-\w+)*)*@\w+(\-\w+)*(\.\w+(\-\w+)*)+$/ ; 
//	var webExp=/^(http|https|frp):\/\/\w+(\-\w+)*(\.\w+(\-\w+)*)*\w+(\-\w+)*(\.\w+(\-\w+)*)+$/;
	var webExp=/^\w+(\-\w+)*(\.\w+(\-\w+)*)*\w+(\-\w+)*(\.\w+(\-\w+)*)+/;
	if(objfrm.txtname.value=='Your Name' || objfrm.txtname.value=='') msg+='-Please enter your name.\n';
	if(objfrm.txtemail.value=='' || objfrm.txtemail.value=='Your Email Address') msg+='-Please enter your email address.\n';
	if(!(emailExp.test(objfrm.txtemail.value))) msg+='-Please enter a valid email address.\n';
	if(objfrm.txtcont.value=='' || objfrm.txtcont.value=='Your Phone') msg+='-Please enter your phone no.\n';
	if(!(anum.test(objfrm.txtcont.value))) msg+='-Please enter a valid phone no.\n';
//	if(objfrm.txtcont.value.length<10) msg+='-Please enter 10 digits.\n';
	if(objfrm.txturl.value=='' || objfrm.txturl.value=='Your Website URL') msg+='-Please enter your Website URL.\n';
	if((objfrm.txturl.value!='') && (!(webExp.test(objfrm.txturl.value)))) msg+='-Please enter url as google.com\n';
//	if(objfrm.cmbcountry.value=='') msg+='-Please select country.\n';
//	if(objfrm.txtcmnt.value=='' || objfrm.txtcmnt.value=='Comments') msg+='-Please enter your comment.\n';
	if(objfrm.txtcode.value=='') msg+='-Please enter the verify code.\n';
	if(msg!=notice)
	{
		alert(msg)
		return false;
	}
	else
	{
		return true;
	}
}

function validate_form_it(objfrm)
{
	notice="Spiacenti, non possiamo completare la richiesta.\n\n";
	msg=notice;
	var anum=/(^\d+$)|(^\d+\.\d+$)/;
	var emailExp= /^\w+(\-\w+)*(\.\w+(\-\w+)*)*@\w+(\-\w+)*(\.\w+(\-\w+)*)+$/ ; 
//	var webExp=/^(http|https|frp):\/\/\w+(\-\w+)*(\.\w+(\-\w+)*)*\w+(\-\w+)*(\.\w+(\-\w+)*)+$/;
	var webExp=/^\w+(\-\w+)*(\.\w+(\-\w+)*)*\w+(\-\w+)*(\.\w+(\-\w+)*)+/;
	if(objfrm.txtname.value=='Your Name' || objfrm.txtname.value=='') msg+='-Inserisci il tuo nome.\n';
	if(objfrm.txtemail.value=='' || objfrm.txtemail.value=='Your Email Address') msg+='-Inserisci il tuo indirizzo e-mail.\n';
	if(!(emailExp.test(objfrm.txtemail.value))) msg+='-Inserisci un indirizzo email valido.\n';
	if(objfrm.txtcont.value=='' || objfrm.txtcont.value=='Your Phone') msg+='-Inserisci il vostro telefono.\n';
	if(!(anum.test(objfrm.txtcont.value))) msg+='-Inserisci un telefono valido no.\n';
//	if(objfrm.txtcont.value.length<10) msg+='-Please enter 10 digits.\n';
	if(objfrm.txturl.value=='' || objfrm.txturl.value=='Your Website URL') msg+='-Inserisci il tuo URL del sito Web.\n';
	if((objfrm.txturl.value!='') && (!(webExp.test(objfrm.txturl.value)))) msg+='-Inserisci URL, google.com\n';
//	if(objfrm.cmbcountry.value=='') msg+='-Please select country.\n';
//	if(objfrm.txtcmnt.value=='' || objfrm.txtcmnt.value=='Comments') msg+='-Please enter your comment.\n';
	if(objfrm.txtcode.value=='') msg+='-Inserisci il codice verify.\n';
	if(msg!=notice)
	{
		alert(msg)
		return false;
	}
	else
	{
		return true;
	}
}
