function OpenWindow(Page,X,Y)
{
	PosX = (screen.width/2)-(X/2);
	PosY = (screen.height/2)-(Y/2)-150;
	newWin = "scrollbars=no,menubar=no,resizable=no,status=yes,width="+X+",height="+Y+",screenX="+PosX+",screenY="+PosY+",top="+PosY+",left="+PosX;
  	myWin = window.open(Page,"",newWin);
	myWin.focus();
}

function PSR_imprimer () { 

    var PSR_f1 = null; 
    var PSR_content=document.getElementById('print').innerHTML; 
    var PSR_title='Statistiques version imprimable';
    
	if (PSR_f1) {
	
		if(!PSR_f1.closed) PSR_f1.close();
	} 
	
    PSR_f1 = window.open ('',"PSR_f1", "height=500,width=755,menubar=yes,scrollbars=yes,resizable=yes,,left=10,top=10"); ; 
    PSR_f1.document.open(); 
    PSR_f1.document.write("<html><head><title>" + PSR_title + "</title><link href='_css/main.css' rel='stylesheet' type='text/css'></head><body bgcolor='#ffffff'>" + PSR_content + "</body></html>"); 
    PSR_f1.document.close(); 
    PSR_f1.document.getElementById('PSR_print').style.visibility='hidden'; 
    PSR_f1.focus(); 
}