﻿function popWebTele(aid, mid) {
    var url = "/Web-Tele/";
    if (mid && mid != null && mid > 0) {
        url += (mid + "/Popup.aspx");
    }
    else if (aid && aid != null && aid > 0) {
        url += (aid + ".aspx");
    }
    window.open(url, "WebTele", "height=610, width=640, location=yes, menubar=no, status=no, toolbar=no", false);
    return false;
}

function popupWebDiff() {
    var url = "/Web-Tele/Stream.aspx";
    window.open(url, "WebDiff", "height=415, width=486, location=no, menubar=no, status=no, toolbar=no", false);
    return false;
}

function popWebTag(tid, tag) {
    var url = "/Web-Tele/";
    if (tid > 0) {
        url += "Etiquettes/";
        url += tid;
        url += "/";
        url += tag;
        url += ".aspx"
    }
    window.open(url, "WebTele", "height=610, width=640, location=yes, menubar=no, status=no, toolbar=no", false);
    return false;
}