function openWindow(URL, width, height) {
	var top = (screen.height - parseInt(height)) / 2;
	var left = (screen.width - parseInt(width)) / 2;
   options = 'height='+height+',width='+width+',toolbar=0,location=0,directories=0,menubar=0,top='+top+',left='+left+',scrollbars=1,status=1';
   w = window.open('', '', options);
   w.document.write('<html><head><title>Chargement en cours...</title></head><body>Chargement en cours...</body></html>');
   w.document.close();
   w.document.location.href=URL;
   return false;
}

function openWindowResize(URL, width, Height) {
	var top = (screen.height - parseInt(Height)) / 2;
	var left = (screen.width - parseInt(width)) / 2;
   options = 'height='+Height+',width='+width+',toolbar=0,location=0,directories=0,menubar=0,top='+top+',left='+left+',scrollbars=1,status=1,resizable=1';
   w = window.open('', '', options);
   w.document.write('<html><head><title>Chargement en cours...</title></head><body>Chargement en cours...</body></html>');
   w.document.close();
   w.document.location.href=URL;
   return false;
}

function openTest() {
   openWindow('index.php?page=Administration:ListeBien', 390, 660);
}

function openFicheVitrineGenere(param) {
   openWindowResize('index.php?page=Administration:FicheVitrineGenere&id1='+param, 650, 300);
}

function openFicheVitrine2Genere(param,param2) {
   openWindowResize('index.php?page=Administration:FicheVitrineGenere&id1='+param+'&id2='+param2, 650, 500);
}

function openVisite(param) {
   openWindow('index.php?page=Administration:ListeVisite&iv='+param, 470, 550);
}

function imprime() {
    if (typeof(window.print) != 'undefined'){
        window.print(); 
    }
}