﻿function IsIE() {
    n = navigator.userAgent;
    w = n.indexOf("MSIE");
    if (w > 0) {
        return true;
    }
    else {
        return false;
    }
}

function AddToFavorite() {
    try {
        if (IsIE()) {
            window.external.AddFavorite("http://www.proxima.co.il", "פרוקסימה");
        }
        else {
            alert("דפדפן זה אינו תומך באופציה זו")
        }
    }
    catch (ex) { }
}

function openWindow(url) {
    window.open(url, "rss", "resizable=1,height=600,width=420,scrollbars=1");
}

