function productSelect(targ,selObj,restore){ //v3.0
 if (selObj.options[selObj.selectedIndex].value != "" )
 {
	   eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
		if (restore) selObj.selectedIndex=0;
 }

}

function Validate_Form()
{
	if ((window.frmFeedback.txtFname.value.length==0) || (window.frmFeedback.txtFname.value==""))
	{
		alert("Please enter first name");
		window.frmFeedback.txtFname.focus();
		return false;
	}
	
	if ((window.frmFeedback.txtLname.value.length==0) || (window.frmFeedback.txtLname.value==""))
	{
		alert("Please enter last name");
		window.frmFeedback.txtLname.focus();
		return false;
	}
	
	if ((window.frmFeedback.txtEmail.value.length==0) || (window.frmFeedback.txtEmail.value==""))
	{
		alert("Please enter e-mail address");
		window.frmFeedback.txtEmail.focus();
		return false;
	}
	if ((window.frmFeedback.txtPhone.value.length==0) || (window.frmFeedback.txtPhone.value==""))
	{
		alert("Please enter phone number");
		window.frmFeedback.txtPhone.focus();
		return false;
	}
	if ((window.frmFeedback.txtCompany.value.length==0) || (window.frmFeedback.txtCompany.value==""))
	{
		alert("Please enter company.");
		window.frmFeedback.txtCompany.focus();
		return false;
	}
	if ((window.frmFeedback.txtComments.value.length==0) || (window.frmFeedback.txtComments.value==""))
	{
		alert("Please enter your comment.");
		window.frmFeedback.txtComments.focus();
		return false;
	}
		return true;
}