function clearField() {
	if (document.googleForm['q'].value == "recherche...") {
		document.googleForm['q'].value = "";
	}
}

//function updateQ() {
//	document.googleForm['q'].value = document.googleForm['q2'].value + " site:www.loribel.com";
//}

function searchOnTop(a_pathToRoot) {
	document.write('<div style="position:absolute; left:450px; top:15px">');
	//document.write('<form name="googleForm" method="get" action="http://www.google.com/search" onsubmit="updateQ()">');
	document.write('<form name="googleForm" method="get" action="http://www.google.com/search">');
	//document.write('	<input type="hidden" name="q" value="" />');
	document.write('	<input type="hidden" name="domains" value="www.loribel.com" />');
	document.write('	<input type="hidden" name="sitesearch" value="www.loribel.com" />');	 
	document.write('	<input name="q" value="recherche..." onfocus="clearField()" />');	
	//document.write('	<a href="js:submit()"><img src="' + a_pathToRoot + '/img.lor/icon/icon_find.gif" align="middle" border="0" /></a>');
	document.write('</form>');
	document.write('</div>');
}

