// JavaScript Document

// fenetre pop up

function popup(image_loc,x,y,XX,YY,txt)
{
 if(navigator.appName == "Netscape")
{

var L = x + 15;
var H = y + 20;
  HTML = "<html><head><TITLE>'"+txt+"'</TITLE></head><body onBlur='top.close()'><a href='javascript:window.close();'><div align='center'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(L,H)'></div></body></html>";
  popupImage = window.open("","photo","width=" +L+",height=" +H+",left="+XX+",top="+YY+",screenX="+1+",screenY="+1);
} 
  if(navigator.appName == "Microsoft Internet Explorer")
{ HTML = "<html><head><META HTTP-EQUIV='imagetoolbar' CONTENT='no'><TITLE>'"+txt+"'</TITLE></head><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><a href='javascript:window.close();'><center><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+30)'></center></body></html>";
  popupImage = window.open('','_blank','toolbar=no,scrollbars=no,top='+YY+',left='+XX+'');
}

//	LEGENDE = "<html><body onBlur='top.close()'><div id='legende' style='position:absolute; width:400px; height:50px; z-index:1; left: 0px; top: 10px;'><font color='#000000' size='7'>" +txt+ "</font></div></div></body></html>";
 	popupImage.document.open();
	popupImage.document.write(HTML);
//	popupImage.document.write(LEGENDE);
  	popupImage.document.close();
}


function popupfile(file,L,H) {
win = window.open("","win","width=" +L +",height=" +H+",screenX="+10+",screenY="+10);
win.location.href = file;
if (win.opener == null) win.opener = window;
<!-- win.blur(); s'ouvre en arrière plan-->
win.focus();    <!-- s'ouvre en avant plan-->
}

// script anti-clic droit
function refresh() {  
document.location.reload();  
return false;  
} 
document.oncontextmenu = refresh; 


// script antiframes
if (top != self){
top.location.href = location.href;
}




