//Script pour que si l'on ouvre un page d'un frame, le frame entier soit ouvert : function 1
function doLoad(){
 if(window.frames.parent==window.frames.self){
   hash_string=window.location.hash;
   url_string=window.location;
   makeFrames(url_string,hash_string);
 }
}

//Script pour que si l'on ouvre un page d'un frame, le frame entier soit ouvert : function 2
function makeFrames(string1,string2){
 document.write("<FRAMESET COLS='151,*' BORDER=0 FRAMEBORDER='No'>");
 document.write("	<FRAME SRC='http://www.maginot-hatten.com/gauche.php?lang=fr' NAME='gauche' scrolling='NO'>"); 
 document.write("	<FRAMESET ROWS='6%,*'>");
 document.write("	<FRAME SRC='http://www.maginot-hatten.com/haut.php' NAME='haut' scrolling='NO'>");
 document.write("	<FRAME SRC='' NAME='principal'>");
 document.write("	</FRAMESET>");
 document.write("</FRAMESET>");
 window.frames.principal.location.replace(string1+string2);
}

//Script pour afficher le bas de la page (Copywrite)
function showbottom(){
 document.write("<BR><BR><center><font size=-2 COLOR='#000000'>Copyright &copy; 2003 "); 
 document.write("<a href='http://www.maginot-hatten.com' target=_top style='font-size:8pt;'><FONT color='#0080c0'><B>Musée de l'Abri de Hatten</B></FONT></a> -  ");
 document.write("<A HREF='mailto:info@maginot-hatten.com' style='font-size:8pt; color='#0080c0';'><FONT color='#0080c0'><B>info@maginot-hatten.com</B></FONT></A><br>");
 document.write("Tous droits r&eacute;serv&eacute;s.</font>");
 document.write("</center>");
}

//Script pour ouvrir une fenaitre popup centrée
function popupcentree(page,largeur,hauteur,options)
{
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

