function clearinput(e) { 
if(e.value=='Enter Here')e.value=""; 
} 

function verify (a)
{
	var b = document.SearchForm;
	var prod_url;	// will hold the url of the Uniface search form

	var s_ndx = document.SearchForm.searchtype.selectedIndex;
	var s_val = document.SearchForm.searchtype.options[s_ndx].value;

	if ((s_val == null) || (s_val == '')) {
		window.alert ('Please specify whether you want to select in Documents or Products');
		return false;
	}

	if ((b.cirestriction.value == '') || (b.cirestriction.value == null))
	{	alert ('Please enter a search value and try again.');
		document.SearchForm.cirestriction.focus(); // puts the prompt to the search field
		//window.status = 'NO SEARCH TEXT ENTERED !!!';
		return false;
	}
	if (s_val == "pro")	// if a product search
	{	prod_url = document.SearchForm.cirestriction.value;
//                alert('HERE');
		location="/html/SearchPart.htm?parm1=" + prod_url;
	}
              if (s_val == "ref")	// if a product search
	{	prod_url = document.SearchForm.cirestriction.value;
//                alert('HERE');
		location="/html/SearchRef.htm?parm1=" + prod_url;
	}
	if (s_val == "doc")	//if doc, then the search engine to be run
	{	
                            prod_url = document.SearchForm.cirestriction.value;
                            b.action = "/idq/program/query.idq?parm1="+document.SearchForm.cirestriction.value;  // specify action
                            b.target="_top";
		b.method = "POST";	// the method
		b.submit();		// and finally submit the form
	}
}
