<!--
//------------------------------------------------------------------------------
function NoError()
{
return true;
}
window.onerror = NoError;
//------------------------------------------------------------------------------
function creerFenetre(Var) {
// instruction pour créer une nouvelle fenêtre
NewWindow = window.open (Var,"Ventana","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resize=yes,width=700,height=500");
NewWindow.focus();
}
//------------------------------------------------------------------------------
function popupphoto_g(page){
var larg=(window.screen.width/2)-(300+10);
var haut=(window.screen.height/2)-(300+40);
var win1=window.open(page,"ZOOM","width=650,height=650,resizable=no,scrollbars=0,left=" + larg + ",top=" + haut + ",screenX=" + larg + ",screenY=" + haut);
win1.focus();
}
//------------------------------------------------------------------------------
function popupphoto_g2(page){
var larg=(window.screen.width/2)-(300+10);
var haut=(window.screen.height/2)-(300+40);
var win1=window.open(page,"ZOOM","width=600,height=600,resizable=no,scrollbars=0,left=" + larg + ",top=" + haut + ",screenX=" + larg + ",screenY=" + haut);
win1.focus();
}
// -->

