function createSearch(searchImage,targetID,searchText,el){
	document.write('<span><input type="hidden" name="ID" value="'+targetID+'"><input name="q" size="8" type="text" id="searchfield" value="'+searchText+'" onClick="searchClick(this,\''+ searchText +'\');" /><a href="#" onClick="doSearch(this,\''+searchText+'\');">&nbsp;<img src="'+searchImage+'" alt="'+searchText+'" border="0" align="absmiddle" /></a></span>');
}
function searchClick(el,empty){
	if(el.value==empty) el.value='';
}
function doSearch(el,empty){
var searchBox=el.parentNode.firstChild.nextSibling;

if(searchBox.value!=empty)
		document.forms["SearchForm"].submit();





}

function createSearchForm(){
document.write('<form action="Default.asp" method="get" name="SearchForm">');
}

function closeSearchForm(){
document.write('</form>');
}
