// JavaScript Document
// fonction de la popup_meteo
function fenetremove(url,largeur,hauteur,options) {
var haut=(screen.height-(hauteur+100));
var Gauche=(screen.width-(largeur+30));
if (haut>Gauche) 
haut=Gauche;
else
Gauche=haut;
mafen=window.open(url,"","top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
for (i=haut; haut>0 ; i--){
if (Gauche==1) break;
Gauche--;
haut--;
mafen.moveTo(Gauche,haut)}
mafen.moveTo(0,0)
}