// JavaScript Document

function displayPopupImage(imagePath, titleName) {

	PreView=window.open("","TypeFocus","width=650, height=550, scrollbars=yes,menubar=no,status=no,left=150,top=100");
	PreView.document.open();
	PreView.document.write('<html><head>');
	PreView.document.write('<title>' + titleName + '</title>');
	PreView.document.write('<link rel="stylesheet" href="src/global_mrkting.css" type="text/css">');
	PreView.document.write('</head>');
	PreView.document.write('<body style="margin:0; padding:0;">');
		PreView.document.write('<div style="margin:0 auto; text-align:center; background-image:url(images/bg_logo.jpg); background-repeat:no-repeat; background-color:#FFFFFF;">');
			PreView.document.write('<div style="width:165px; height:52px; background-image:url(images/bg_logo.jpg); background-position:right; float:right; clear:both; margin-bottom:10px;"></div>');
			PreView.document.write('<img id="imge" src="' + imagePath + '" border="1px solid #3c6997">');
			PreView.document.write('<div style="padding-top:10px;">');
				PreView.document.write('<a href="javascript: self.close();"><img src="images/close_but.gif" width="68" height="31" border="0"></a>');
			PreView.document.write('</div>');
		PreView.document.write('</div>');
	PreView.document.write('</body>');
	PreView.document.write('</html>');
	PreView.document.close();
	PreView.focus();
}
