<!-- 
     //  weirdeos.net  
// -->

function OpenContactWin() {
    winURL = "contact.php";
    winWidth  = 660;
    winHeight = 360;
    winLeft = Math.round((screen.availWidth-winWidth)/2);
    winTop  = Math.round((screen.availHeight-winHeight)/2 * 0.8);
    
    attr = 'width=' + winWidth + ',height=' + winHeight + ',left=' + winLeft + ',top=' + winTop;
    attr = attr + ",directories=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0";
    window.open (winURL, "WHSContactWindow", attr);
}
