/************************************************************************************************************
    THIS FUNCTION OPENS A NEW POP-UP STYLE WINDOW. THE NAME IS REQUIRED AND THE WIDTH AND HEIGHT ARE OPTIONAL 
************************************************************************************************************/
function openWindow(WindowName, newWidth, newHeight){
if (newWidth == null) { newWidth = 520 }
if (newHeight == null) { newHeight = 300 }

window.open(WindowName, WindowName.substring(1,WindowName.length - 4), 'width=' + newWidth + ',height=' + newHeight + ',resizable=no,scrollbars=yes,toolbars=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
}
