// JavaScript Document
function popup(mypage,myname,w,h,scroll)
{
LeftPos = (screen.width) ? (screen.width-w)/2 : 0;
TopPos = (screen.height) ? (screen.height-h)/2 : 0;
set = 'height='+h+',width='+w+',top='+TopPos+',left='+LeftPos+',resizable=no,scrollbars='+scroll+',status=yes';
win = window.open(mypage,myname,set);
if (win) win.focus();
}