// Document Javascript pour www.air-sonic.net

// Ouvre une fenêtre centrée de la taille spécifiée
function OpenWindow(url, width, height)
{
	posX = screen.width / 2  - width / 2;
	posY = screen.height / 2 - height / 2;
	
	window.open(url, 'popup', 'toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0, width=' + width + ', height=' + height + ', left=' + posX + ', top=' + posY);
}
