// JavaScript Document



function contactpopup()

{

var h = 800; // hauteur de la popup

var l = 550; // largeur de la popup

var PosX = ( screen.availWidth - h ) / 2; 

var PosY = ( screen.availHeight - l ) / 2; 

var option = "resizable=no,top="+PosY+",left="+PosX+",width="+h+",height="+l; 

window.open("contact.html","",option); 

}


function closepopup()

{

window.close("contact.html",""); 

}
