﻿

function addToFavorites() { 
    if (document.all)
    {
        window.external.AddFavorite(location.href,document.title);
    }
    else if (window.sidebar)
    {
        window.sidebar.addPanel(document.title,location.href,'');
    }
}

function CheckPrint() {
    if (GetUrlParameter("show") == "print")
    {
        window.print();
    }
}

function GetUrlParameter(param){
    param = param.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
    var regexS = "[\\?&]" + param + "=([^&#]*)";
    var regex = new RegExp(regexS);
    var results = regex.exec(window.location.href);
    if (results == null)
        return "";
    else
        return results[1];
}

function ShowProperty(propertyId, viewType, isNewWindow) {
    var location = "/RealEstate/PropertyDisplay.aspx?PropertyId=" + propertyId + "&show=" + viewType;
    if (isNewWindow)
    {
        window.open(location, "", "op=0, left=0,status,toolbar,menubar,scrollbars,resizable,directories,location");
    }
    else
    {
        window.location = location
    }
}

function ShowServiceForm(propertyId) {
    var location = "/RealEstate/RealEstateServiceForm.aspx?PropertyId=" + propertyId;
    window.open(location, "", "op=0, left=0,status,toolbar,menubar,scrollbars,resizable,directories,location");
}

function Translate(lang) {
    var translateUrl = "http://www.google.com/translate?u=" + location.href + "&hl=he&ie=UTF8&langpair.x=7&langpair.y=7&langpair=" + lang;
    window.open(translateUrl, "", "op=0, left=0,status,toolbar,menubar,scrollbars,resizable,directories,location"); 
}

function Translate(id, lang) {
    var translateUrl = "http://www.google.com/translate?u=http://society4u.co.il/RealEstate/PropertyDisplay.aspx?PropertyId=" + id + "&hl=he&ie=UTF8&langpair.x=7&langpair.y=7&langpair=" + lang;
    window.open(translateUrl, "", "op=0, left=0,status,toolbar,menubar,scrollbars,resizable,directories,location");
}
