function validation_search()
{

	var frm = document.frmsearch;
	
	if(document.getElementById("seach_Model").value.length > 0)
	{
		
		if(!ValidModelNum(document.getElementById("seach_Model").value))
		{
			alert("Valid Model No. requires 1-50 alpha-numeric characters. Please enter a valid Model No.");
			return false;
		}
	}
	
	
	
	if(document.getElementById("seach_Manufacture").value=='Not Available')
	{
		return false;
	}
	
	
	if(document.getElementById("seach_Category").value=='Not Available')
	{
		return false;
	}
	
	document.frmsearch.submit();
	return true;
}
function RequestQuote(str)
{
//	var check='Not';
	document.getElementById("hdnCart").value = "QUOTE";
//	var count=document.getElementById("hdnCount").value;
	var count=document.getElementById("hdnIDs").value;

	//for(i=0;i<count;i++)
	//{
		//if(document.getElementById("ITEM_ID" + i)!=null)
		//{
			//if(document.getElementById("ITEM_ID" + i).checked)
			//{
				
				
				//check='True';	
				if(count == "")	
				{
					alert('Please select at least one item');
					return false;
				}
				else
				{			
					if(str == "Quote")
					{
						document.frmsearchresult.action = "getquote.php";
						document.frmsearchresult.submit();
						return true;
					}
				}
			//}
		//}
	//}
	//if(check=='Not')
	//{
		
	//	return false;
	//}
	//return false;
}
function AddtoCart(str)
{
	//alert(str);
	//var check='Not';
	//var count=document.getElementById("hdnCount").value;
	var count=document.getElementById("hdnIDs").value;
	document.getElementById("hdnCart").value = "ADD";

	//alert(count);
	//for(i=0;i<count;i++)
	//{
		//if(document.getElementById("ITEM_ID" + i)!=null)
	//	{
		//	if(document.getElementById("ITEM_ID" + i).checked)
			//{
				
				
				//check='True';	
					
					if(count == "")	
					{
						alert('Please select at least one item');
						return false;
					}
					else
					{	
						if(str == "Addcart")
						{
							document.frmsearchresult.action = "mycart.php";
							document.frmsearchresult.submit();
							return true;
						}
					}
				
			//}
	//	}
		
//	}
//	if(check=='Not')
//	{
//		alert('Please select at least one item');
//		return false;
	//}
	//return false;
}
