﻿// Fichier JScript

function open_page(val)
{
//window.open ("geoportail.aspx","fenetreimage", "width=205,height=250,scrollbars=no, toolbar=no, location=no, directories=no, status=no");
       var sWidth = screen.availWidth-10;
        var sHeight = screen.availHeight-10;
 //   window.open(val,'_blank','left=0,top=0,width='+sWidth+',height='+sHeight+',location=no,menubar=no,fullscreen=no,scrollbars=yes,resizable=yes, directories=no,menu=no,menubars=no,toolbar=no');
 
 var newwin=window.open('./page/connexion.aspx','_blank','left=0,top=0,width='+sWidth+',height='+sHeight+',location=no,menubar=no,fullscreen=no,scrollbars=yes,resizable=yes, directories=no,menu=no,menubars=no,toolbar=no');

if (newwin)
{
    window.close(); 
}
  
}




