/* open popup window */
<!--
var win = null;
function popupcentree(mypage,myname,w,h,scroll,size,menu){
		//LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		//TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		settings =
'height='+h+',width='+w+',top=0,left=0,status=false,scrollbars='+scroll+',resizable=yes ,menubar='+menu+''
		newwin = window.open(mypage,myname,settings);
}
//-->