﻿
function open_termsForm()
{
    var maxX = 380;
    var maxY = 420;
    var leftX = (screen.width - maxX) / 2;
    var topX = (screen.height - maxY) / 2;      
    var windowFeatures = "width=" + maxX + ",height=" + maxY + ",status=0,resizable=0,location=0,toolbar=0,menubar=0,left=" + leftX + ",top=" + topX ;
    window.open("Terms.aspx", "TermsWindow", windowFeatures);        
    return false;
}
    
function linkToGovmap(obj) {

    var maxX = screen.availWidth - 10;
    var maxY = screen.availHeight - 175;
    var leftX = 0;
    var topX = 0;

    var p_gush = obj;

    var windowFeatures = "width=" + maxX + ",height=" + maxY + ",status=1,resizable=1,location=1,toolbar=1,menubar=1,left=" + leftX + ",top=" + topX + "screenX=" + leftX + ",screenY=" + topX;

    valArray = p_gush.split(" ");
    block_num = new String(valArray[0].split(":")[1]);
    parcel_num = new String(valArray[1].split(":")[1]);

    window.open("http://www.govmap.gov.il?block=" + block_num + "&parcel=" + parcel_num, "mapwindow", windowFeatures);

}
