<!--
function popup(name,width,height) {
			var topPos = (screen.height-height)/2
			var leftPos = (screen.width-width)/2
			var popup = window.open("","Images","width=" + width + ",height=" + height + ",top=" + topPos + ",left=" + leftPos + ",toolbar=0, status=0, menubar=0, resizable=0, scrollbars=no, directories=0, dependent=yes");
			popup.document.open();
			popup.document.write("<html><head><meta http-equiv='imagetoolbar' content='no'><title>image popup</title></head><body style='margin: 0; padding: 0; background-color: #fff; overflow:hidden'><table width='100%' height='100%' border='0' cellspacing='0' cellpadding='0'><tr><td align='center' valign='middle'><a href='javascript:self.close();'><img src='" + name + " 'border='0' alt='click to close.'></a></td></tr></table></body></html>");
			popup.document.close();
			popup.focus();
		}

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
//-->