<!--
	
function centerOpen(url,name,w,h,x,y,center) { 
	screenw = window.screen.availWidth;
	screenh = window.screen.availHeight;

	if (center=="1"){
		x=(screenw-w)/2;
		y=(screenh-h)/2;
    }
    
	newwindow = window.open(url,name,'width='+w+',height='+h+',left='+x+',top='+y+',toolbars=no,statusbar=no,resizable=no,menubar=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	}

// -->