// JavaScript Document
function openPopup(url, wname, width, height, type )
{
    var options = "width=" + width + ",height=" + height + ",top=" + ((screen.height - height) / 4).toString() + ",left=" + ((screen.width - width) / 2).toString();
    switch (type)
    {
        case 1:
            options += ",toolbar=no,status=no,resizable=no,scrollbars=yes";
            break;
        case 2:
            options += ",menubar=yes,toolbar=yes,status=yes,resizable=yes,location=yes,scrollbars=yes";
            break;
        default:
            break;
    }
    if (!wname) {wname = "sktodayPopup";}
    popupWindow = window.open(url, wname, options);
    if (popupWindow) {popupWindow.focus();}
}

