//Border Less Window. Its pretty simple, just a fullscreen window, no features then resized.
function GetCalendarPopup() {
var windowW=550
var windowH=400
var windowX = 100
var windowY = 130
window.name="Calendar"; 
s = "scrollbars=yes"+",width="+windowW+",height="+windowH;
mywindow = window.open("restricted/login.asp","Popup",s);
//windowX = (screen.width) ? (screen.width-windowW)/2 : 0;
//windowY = (screen.height) ? (screen.height-windowH)/2 : 0;
mywindow.focus();
//mywindow.resizeTo(windowW,windowH);
mywindow.moveTo(windowX,windowY);
}
