/*
'*****************************************************************************
'	Agestis - Content Management System - http://www.agestis.com
'	by ARICIA http://www.aricia.fr
'*****************************************************************************
'			Version:	20050728.01
'			coder:		Damien
'*****************************************************************************

'	Diverses fonctions javascript

'*****************************************************************************
*/

var fenetre;
var top=(screen.height-250)/2;
var left=(screen.width-250)/2;
var init_width = 250;
var init_height = 250;
var titlePopUp = "Zoom"

function CalculPosition()
{
	if(init_width!=250){
		top=(screen.height-init_height)/2;
		left=(screen.width-init_width)/2;
	}
}


function zoom(page)
{
	CalculPosition();

	if(fenetre){
		fenetre.close();	
	}

	fenetre = window.open(page,titlePopUp,"top="+top+",left="+left+",width="+ init_width +",height="+ init_height +",resizable=yes,scrollbars=yes");
	fenetre.focus();
}


function TestFenetre()
{
	if(fenetre){
		fenetre.focus();
	}
}

