// Miscellaneous scripts
// --------------------------------------------------
var newWindow = null;
function MakeNewWindow(winTarget,winName,winTop,winLeft,winWidth,winHeight) {
   newWindow = window.open(winTarget,winName,"status=no,menubar=no,toolbar=no,scrollbars=no,resizeable=no,width=" + winWidth + ",height=" + winHeight + ",top=" + winTop + ",left=" + winLeft)
   newWindow.focus()
}
