// JavaScript Document

function imprime() {
if (typeof(window.print) != 'undefined')
 { window.print(); }
} 

function close_window()
{
	document.close();
}

function favoris(){
	
 if ( navigator.appName != 'Microsoft Internet Explorer' ){
           window.sidebar.addPanel('PassLoisirs - Le plaisir à prix réduit','http://passloisirs.fr/',"");
       }
       else {
           window.external.AddFavorite('http://passloisirs.fr/','PassLoisirs - Le plaisir à prix réduit');
       }	

}

function fenetreCent(URL,nom,largeur,hauteur,options) {
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
fencent=window.open(URL,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}


function open_close(URL,nom)
{
	self.close();
	//fenetre=window.open(URL,nom);
	//window.open("blank");
	window.opener.location.href=URL;
}