<!--

    function newWindow(url,name,w,h)
 {
 LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
 var win_opt = "screenX=0,screenY=0,left=" + LeftPosition + ",top=" + TopPosition + ",toolbar=0,menubar=0,location=0, directories=0, status=0,";
 win_opt += "scrollbars=1, resizable=1, copyhistory=0,";
 win_opt += "width=" + w + ",height=" + h;
 msgWindow = window.open(url,name,win_opt);
 msgWindow.focus();
 }
  
  function newWindow2(url,name,w,h)
 {
 LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
 var win_opt = "screenX=0,screenY=0,left=" + LeftPosition + ",top=" + TopPosition + ",toolbar=0,menubar=0,location=0, directories=0, status=0,";
 win_opt += "scrollbars=0, resizable=0, copyhistory=0,";
 win_opt += "width=" + w + ",height=" + h;
 msgWindow = window.open(url,name,win_opt);
 msgWindow.focus();
 }
//-->
