function pop(sLink,iWidth,iHeight,scrollbar,resi)
{
 if (!resi) resi='no';
 left=0;
 G_day = new Date();
 G_seed = G_day.getTime();
 iRand = parseInt(((G_seed - (parseInt(G_seed/1000,10) * 1000))/10)/100*100000 + 1,10);
 winleft = ((screen.width - iWidth) / 2)-left;
 winUp = (screen.height - iHeight) / 2;
 
 window.open(sLink,iRand,'scrollbars='+scrollbar+',menubar=no,resizable='+resi+',width='+iWidth+',height='+iHeight+',left='+winleft+',top='+winUp);
}

function search()
{
  var form = document.getElementById('searchform');
	if (form.SearchText.value=='')
	{
		alert('Merci de remplir un mot clef')
		form.SearchText.focus();
	}
	else{form.submit();}
}


//for a javascript level to go to another page
function jsRedirectTo(url)
{
	document.location.href = url;
}

