//declaration nouvelle fenetre popup
var newWin = null;

//fonction de fermeture d'une popup
function closeWin()
	{
	if (newWin != null)
		{
		if(!newWin.closed)
			newWin.close();
		}
	}

//fonction d'affichage d'une popup
function popUp(strURL,strWidth,strHeight) 
	{
	//initialisation variable
	var strOptions="";
	//on attribut les options
	strOptions="width="+strWidth+",height="+strHeight+",left=10,top=30,scrollbars=yes";
	newWin = window.open(strURL,'wclose',strOptions);
	//on laisse la popup en 1er plan
	newWin.focus();
	} 
