// JavaScript Document
var win = null;
var scbar = 'yes';
function NewWindow(mypage,myname,w){
h = (screen.height)-100;
LeftPosition = (screen.width) ? (screen.width-w)/1 : 0;
TopPosition = (screen.height) ? (screen.height-h)/1 : 0;
settings ='height='+h+',width='+w+',scrollbars='+scbar+',top='+TopPosition+',left='+LeftPosition+','
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}
