function Search_onclick() {
	var Keyword = Search.Keyword.value;
	var BizType = Search.BizType.value;
	var Country = Search.Country.value;
	var Category = Search.Category.value;

	if (Keyword == "" && Country == "ALL" && Category == "ALL" && BizType == "ALL")  
	{
		return false;
	}
}

function ContactPop(loadme)
{
	var newWindow
	if (! newWindow || newWindow.closed)
		{
			// alert (loadme);
			newWindow = window.open(loadme,"EnquiryCart","resizable,scrollbars,dependent,width=850,height=650");
			newWindow.focus();
		}
	else
		{
			newWindow.focus();
		}
}