<!--
var win = null;
function NewWindowVarSize(mypage,myname,wide,high){
Wwidth=screen.width*wide
Hheight=screen.height*high
LeftPosition = screen.width*((1.-wide)/2.)
TopPosition = screen.height*((1.-high)/5.)
settings =
'height='+Hheight+',width='+Wwidth+',top='+TopPosition+',left='+LeftPosition+',menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,status=yes,location=yes'
win = window.open(mypage,myname,settings)
}
 -->
