
function makeSearch(sOrderType)
{
	var objFV = new FormValidator("frmSearch");

	if (!objFV.validate("ddWidth", "B", "Please select the Width."))
		return false;		
		
	if (!objFV.validate("ddProfile", "B", "Please select the Profile."))
		return false;
		
	if (!objFV.validate("ddDiameter", "B", "Please select the Diameter."))
		return false;		
		
	objFV.setValue("ddOrderType", sOrderType);
	objFV.submit( );

	return true;
}