﻿//function ShortcutPage(user, session, idConc, domain) {
//    window.open("/Public/Launch.aspx?usr=" + user + "&session=" + session + "&concessionId=" + idConc + "&exec=yes"+"&domain="+domain, "ShortcutPage", "width=300, height=150, status=0, scrollbars=no");
//    return false;
//}
function ShortcutPage(url, width, height) {

   

    if (width == undefined)
        width = 300;

    if (height == undefined)
        height = 150;

    var popup = window.open(url, "ShortcutPage", "width=" + width + ", height=" + height + " status=0,scrollbars=no");

    popup.focus();

    return false;
}
   