<!--
function ImageWindow(width,height) {

	leftPosition = (screen.width) ? (screen.width-width)/2 : 0;
	topPosition = (screen.height) ? (screen.height-height)/2 : 0;
	window.open("","ImageWindow","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,width="+width+",height="+height+",left="+leftPosition+",top="+topPosition);
}
//-->

