
<!--
function showEvent(url) {
	var width = 600
	var height = 450
	
	x=(640 - width)/2,y=(480 - height)/2;
	if (screen) {
		y=(screen.availHeight - height)/2;
		x=(screen.availWidth - width)/2;
	}
		
	if (screen.availWidth > 1800) {
		x=((screen.availWidth/2) - width)/2;
	}
window.open(url,"s","width="+width+",height="+height+",screenX="+x+",screenY="+y+",top="+y+",left="+x+"","toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0")
}


//-->


