function checkForm()
{
	var errors = '';
	var catname = '/category/' + document.forms['PriceSearch'].elements['CategoryName'].value + '.html';   
	var wwd = document.forms['PriceSearch'].elements['Width'].value;
	var whd = document.forms['PriceSearch'].elements['Height'].value;
	if (document.forms['PriceSearch'].elements['CategoryName'].value == 0){errors += "-> You must select a Product.\n";}
	if (wwd == 0){errors += "-> You must select a Width.\n";}
	if (whd == 0){errors += "-> You must select a Height.\n";}
	if (errors)
	{
		emsg = "Quick Quote entry errors:\n\n";
		emsg += errors+"\n";
		alert(emsg);
		return false;
	}
	else
	{
		document.PriceSearch.action = catname;
		return true;
	}
}