function del(theURL) {
if (confirm('Confirmez l effacement ?')) 
	{
	window.location.href=theURL;
	}
}

function jumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function switchMenu(obj)
{
var el = document.getElementById(obj);
if(el.style.display != "block")
{
el.style.display = "block";
}
else
{
el.style.display = "none";
}
}

var newwindow
function pop(url) {
if (newwindow && !newwindow.closed)
{ newwindow.focus(); newwindow.document.clear() }
else
{ newwindow=window.open('','','width=780,height=585,resizable=1') }
newwindow.document.writeln('<html> <head> <title>Zoom<\/title> <\/head> <body bgcolor=\"black\"> <center>');
newwindow.document.writeln('<a  href="" onClick="window.close()"><img border="0" src="' + url +  '\" ><\/a>');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
}