function LoadLicenseWindow()
//Returns whether the license window is opened
{

//Create a window to update the classcampus licenses
var LicenseWin=window.open('Default/system/asp/license.asp','licenseupdate', 'left=10000,top=10000,screenX=10000,screenY=10000,width=1,height=1,toolbar=0,menubar=0,resizable=0,alwayslowered=1');

//Return whether the license window is displayed
return (LicenseWin == null ? false: true);

}

