<!--
function showImage(imageName,title,width,height) {
	onewindow=window.open('','_blank','resizable=no,scrollbars=0,marginheight=0,marginweight=0,toolbar=no,width=' + width + ',height=' + height );
	onewindow.document.open();	
	onewindow.document.write(

			'<html>' +
			'<head>' +
			'<title>' + title + '</title>' +
			'<link rel="stylesheet" href="/common.css" type="text/css">' +
			'</head>' +
			'<body  topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0">' +
				'<img src="' + imageName + '" width="' + width + '" height="' + height + '" alt="" border="0"><br>' +
			'</body>' +
			'</html>'
	);
	onewindow.document.close();
	onewindow.focus();
}
//-->

