﻿
//*********************************************************
//Overture d'une page dans une Popup
//*********************************************************	
	function open_popup(lien, nom, w , h) 
	{
		if(nom==null)
			nom = "popup";
		if(w==null)
			w = 600;
		if(h==null)
			h = 400;
	
		window.open(lien,nom,"menuBar=0,toolbar=0, location=0, directories=0, status=0, scrollbars=1, copyhistory=0,  resizable=1, width="+w+", height="+h+"\"")
	}
			
// *********************************************************
// Mets le focus sur la page courrante même si déjà ouverte
	window.focus();