window.moveTo(0,0);
if (document.all) 
{
window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers) 
{
if (window.outerHeight<screen.availHeight||window.outerWidth<screen.availWidth)
{
window.outerHeight = screen.availHeight;
window.outerWidth = screen.availWidth;
}
}
//Ouverture Popup centree dans la page/
function fenetreCent(url,nom,largeur,hauteur,options) {
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
NOMFENETRE=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}
//Texte fixe dans barre d'état/
window.defaultStatus='Bienvenue sur ce site';
//Gestion messages d'erreur/
function NoError()
	{
	return true;
	}
window.onerror=NoError;
//Activation du bouton Fermer/
function myClose() { 
 opener = self; 
 self.close(); 
} 
