﻿function GetURLQueryString() {
    URL = window.location.search.substring(1);
    if (URL != "")
    {   
        gy = URL.split("&");
        for (i = 0; i < gy.length; i++) 
        {
           // ft = gy[i].split("=");
            //return ft[1];
            return gy[i];
            
        }
    }
    else
    {
        return "pt=0";
    }
}
function OpenWindow(PageName,Title,Width,Height) {
    var win;
var browser = navigator.appName;
var url = PageName;
win = new Window({ className: "spread", title: Title,
    recenterAuto: true, width: Width, height: Height, draggable: false, resizable: false, url: url, showEffectOptions: { duration: 0.00 }
})
win.showCenter(true);
}
