1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<script type="text/javascript">
var fenetreFct=null, fenetreLieu=null;
//Popup pour la recherche sur les métiers
function ouvreFenetreFct(nomPage)
{
//Pour centrer la fenêtre
var posTop=(screen.height-100)/2;
var posGauche=(screen.width-400)/2;
var args="";
args = "top="+posTop+",left="+posGauche+",width=400 , height= 100, resizable=no, location=no, menubar=no, status=no, scrollbars=yes, menubar=no";
if(fenetreLieu==null)
{
fenetreFct = window.open(nomPage,"",args);
}
else
alert('Fermez l\'autre fen\352tre svp');
}
//Popup pour la recherche de la commune/Code Postal
function openWindowLieu(pageName)
{
//Pour centrer la fenêtre
var positionTop=(screen.height-100)/2;
var positionGauche=(screen.width-400)/2;
var args="";
args = "top="+positionTop+",left="+positionGauche+",width=400 , height= 100, resizable=no, location=no, menubar=no, status=no, scrollbars=yes, menubar=no";
if(fenetreFct==null)
{
fenetreLieu = window.open(pageName,"",args);
}
else
alert('Fermez l\'autre fen\352tre svp');
}
</script> |
Partager