// JavaScript Document

//***** Function for Demo popup Centered in the Window *****//
function demoPopCentered(url, w, h, name) {
   var t = Math.floor( (screen.height - h) / 2);
   var l = Math.floor( (screen.width - w) / 2);
   var winParms = "top=" + t + ",left=" + l + ",width=" + w + ",height=" + h;
   if (name=="") {name="demoPop"}
   var win = window.open(url, name, winParms);
   if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
   //return win;
}
//***** END *****//