
function checkSearch()
{
	targ=document.getElementById('search');
	if(targ.value=='Cauta instrumente muzicale')
	targ.value='';
	else if(targ.value=='' || targ.value==' ')
	targ.value='Cauta instrumente muzicale';
}

function doSearch(e)
{
	var targ;
	if (!e) var e = window.event;
	if (e.target) targ = e.target;
	else if (e.srcElement) targ = e.srcElement;
	if (targ.nodeType == 3) // defeat Safari bug
	targ = targ.parentNode;
	
	if(targ.value=='' || targ.value=='Cauta' || targ.value==' ' || targ.value=='Cauta instrumente muzicale')
	{
		
	}
	else
	{
		if(e.keyCode == 13)
		window.location='Cauta/'+targ.value;
	}
}

function doSearchSimple()
{
	targ=document.getElementById('search');
	
	if(targ.value=='' || targ.value=='Cauta' || targ.value==' ' || targ.value=='Cauta instrumente muzicale')
	{
		
	}
	else
	{
		window.location='Cauta/'+targ.value;
	}
}
