<!--
var wndw = null;
		function NewWindow(what,who,w,h,scrl){
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  		set ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scrl+',resizable'
		wndw = window.open(what,who,set)
		if(wndw.window.focus){wndw.window.focus();}
		}
// -->