function img_jp2k( SourceFile, PictWidth, PictHeight)
{

var navName;

document.open();

/*
document.write(navigator.appName);
document.write(navigator.appVersion.charAt(0));
document.write("<p></p>");
document.write(navigator.userAgent);
*/

nav = navigator.appName;

if (navigator.userAgent.indexOf("Opera") != -1) 
{
	// Opera browser detected
	nav = "Opera Browser";
}

	
if ( nav == "Microsoft Internet Explorer") 
{
	document.write("<object classid='clsid:73BF7099-EC98-42A0-86F6-B3B3092EDD96' id='MMJ2KAX1' width='" + PictWidth + "' height='" + PictHeight + "'>\
	<param name='_ExtentX' value='" + PictWidth * 10 + "'>\
	<param name='_ExtentY' value='" + PictHeight * 10 + "'>\
	<param name='SRC' value='" + SourceFile + "'>\
	<table border='1' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='" + PictWidth + "' id='AutoNumber1' height='" + PictHeight + "'>\
  	<tr>\
    	<td width='" + PictWidth + "'> \
      	<p align='center'> Internet Explorer JPEG2000 Plug-in not installed. </p>\
      	<p align='center'> Click <a href='http://www.morgan-multimedia.com/ubb/forum1/clicks_db/download.asp?file=MMJP2KAX.exe'>here</a> \
      	to download it. </p>\
      	<p align='center'> Install it and refresh this page. </p>\
    	</td>\
  	</tr>\
	</table></object>")
}
else
{
	mimetype = navigator.mimeTypes["image/jp2"];
	
	if (mimetype)
	{
		plugin = mimetype.enabledPlugin;
		if (plugin) 
		{
			// Yes, so can we display with a plug-in?   
  			document.write("<embed type='image/j2c' src='" + SourceFile + "' width='" + PictWidth + "' height='" + PictHeight + "' PLUGINSPAGE='http://www.morgan-multimedia.com/ubb/forum1/clicks_db/download.asp?file=setup_moz_plugin.exe' ></embed>");
  		}
  		else
  		{   
			document.write("<table border='2' cellpadding='0' cellspacing='0'  style='border-collapse: collapse' bordercolor='#111111' width='" + PictWidth + "' id='AutoNumber1' height='" + PictHeight + "'>\
	  				<tr>\
	    				<td width='" + PictWidth + "'> \
	      				<p align='center'> Mozilla/Netscape JPEG2000 Plug-in not installed. </p>\
	      				<p align='center'> Click <a href='http://www.morgan-multimedia.com/ubb/forum1/clicks_db/download.asp?file=setup_moz_plugin.exe'>here</a> \
	      				to download it. </p>\
	      				<p align='center'> Then restart your browser. </p>\
	    				</td>\
	  				</tr>\
					</table>");
		}
	}
	else
 	{   
		document.write("<table border='2' cellpadding='0' cellspacing='0'  style='border-collapse: collapse' bordercolor='#111111' width='" + PictWidth + "' id='AutoNumber1' height='" + PictHeight + "'>\
  				<tr>\
    				<td width='" + PictWidth + "'> \
      				<p align='center'> Mozilla/Netscape JPEG2000 Plug-in not installed. </p>\
      				<p align='center'> Click <a href='http://www.morgan-multimedia.com/ubb/forum1/clicks_db/download.asp?file=setup_moz_plugin.exe'>here</a> \
      				to download it. </p>\
      				<p align='center'> Then close your browser, Install it and come back to refresh this page. </p>\
    				</td>\
  				</tr>\
				</table>");
	}
}


document.close();
}
