function fenetre(lien,w,h){
mywindow=window.open(lien,'mytarget','scrollbars=no,width='+w+',height='+h);
mywindow.focus();
}

function fenetre2(lien,w,h){
mywindow=window.open(lien,'mytarget','scrollbars=yes,width='+w+',height='+h);
mywindow.focus();
}

function diaporama(lien,w,h){
mywindow=window.open(lien,'diaporama','scrollbars=yes,width='+w+',height='+h);
mywindow.focus();
}

function jeu(lien,w,h){
	mywindow=window.open(lien, 'mytarget' ,'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' +w +',height=' +h +',left=0,top=0,screenX=0,screenY=0');
	mywindow.focus();
}

function goto_site2(direction){
	opener.location.href = direction;
	window.close();
}
