﻿function PopupSizeWindow(theURL, w, h, scrollbars)
{
var PopupWindow=null;if(w == 0) w = 800;if(h == 0) h = 600;var theCommands = "toolbar=no,location=no,status=no,menubar=no,left=10,top=10," + "width=" + w + ",height=" + h;var scrollCmds = (scrollbars == true) ? ",scrollbars=yes" : "";theCommands = theCommands + scrollCmds;PopupWindow = window.open(theURL, 'SkywardPopup', theCommands);PopupWindow.focus();}

if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();