/*
****************************************************
*
* 	..:: devmain.com ::..
* 	
*       création le 02/08/2002
*
*
*
*****************************************************
*/	
function popup_ouvrir( page , height , width  , scrol )
{
	var Left=30;  //window.screen.width/2-300;
        var Top=30;   //window.screen.height/2-300;
        var config="'toolbar=no, menubar=no, location=no, directories=no, status=no, scrollbars=" + scrol + ", resizeable=no, copyhistory=no, width=" + width + ", height=" + height + ", left=" + Left + ", top=" + Top +"'";
	
	window.open( page , '', config );
	//si nom du popup est def => les details souvrent tous dedans
}
function popup_fermer( page )
{
	window.close();
}