<!--
function openWindow(url,w,h,sb){
  	var x=(screen.width-w)/2;
  	var y=(screen.height-h)/2;
	features="scrollbars="+sb+",width="+w+",height="+h+",left="+x+",top="+y;
  	win=window.open(url,'openWindow',features);
  	win.window.focus();
}
//-->