/* Javascript pour lien popup copyright */

var nouvelleFenetre = null;
function fermerFenetre(){
	if (nouvelleFenetre != null){
		if(!nouvelleFenetre.closed)
			nouvelleFenetre.close();
	}
}
function ouvrirFenetre(strURL,strType,strHeight,strWidth) {
	fermerFenetre();
	var strOptions="";
	if (strType=="minimal") strOptions="resizable,scrollbars,height="+strHeight+",width="+strWidth;
	if (strType=="statut") strOptions="status,resizable,height="+strHeight+",width="+strWidth;
	if (strType=="navigateur") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	nouvelleFenetre = window.open(strURL, 'newWin', strOptions);
	nouvelleFenetre.focus();
}
/**/