﻿function OpenPopup(url, name, w, h, restricted) {

    var win = null;
    var winl = (screen.width-w)/2;
    var wint = (screen.height-h)/2;
    var settings = "";
    
    if(restricted == "true")
    {
        settings ='height=' + h + ',width=' + w + ',top=' + wint + ',left=' + winl + ',scrollbars=no,toolbar=no,status=no,menubar=no,resizable=no';
    }
    else
    {
            settings ='height=' + h + ',width=' + w + ',top=' + wint + ',left=' + winl + ',scrollbars=yes,toolbar=yes,status=yes,menubar=yes,resizable=yes';
    }
    win = window.open(url,name,settings);
    if(parseInt(navigator.appVersion) >= 4) {
        win.window.focus();
    }
} 
