<!--
function viewimage(url, width, height) {
	var left = Math.round((screen.width/2)-(width/2));
	var top = Math.round((screen.height/2)-(height/2));
	FormWin = window.open(url, '', "width="+width+", height="+height+", menubar=no, resizable=no, scrollbars=no, status=no, border=no, toolbar=no, left="+left+", top="+top);
	FormWin.focus();
}


//-->