/**********************************************************************
 * F@rr Web -- ce fichier contient les fonctions : javascript client. *
 **********************************************************************/

/*  OUVERTURE POPUP  */
 
function winOpen(url,name,w,h,scroll,resize) {
	var tailleecranX=parseInt(screen.width);
	var tailleecranY=parseInt(screen.height);
	positionX=tailleecranX-w;
	positionX=Math.round(positionX/2);
	positionY=tailleecranY-h;
	positionY=Math.round(positionY/2);
	chaine = 'width='+w+',height='+h+',resizable='+resize+',scrollbars='+scroll+',top='+positionY+',left=' + positionX;
	var laFenetre = window.open(url,name,chaine);
	laFenetre.focus();
}



function taille()
{
var wid=screen.width;
var hei=screen.height;
var gauche;
var tmp;
tmp = wid/2;

gauche = tmp-400;
if (navigator.appName == "Netscape")
document.global.left = gauche
else
global.style.left = gauche
}

