//NARIS FLASH TRANSPARENT & OPTION
function flash(c,d,e) {
 var flash_tag = "";
 flash_tag = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
 flash_tag +='codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ';
 flash_tag +='WIDTH="'+c+'" HEIGHT="'+d+'" >';
 flash_tag +='<param name="wmode" value="transparent">';
 flash_tag +='<param name="movie" value="'+e+'">';
 flash_tag +='<param name="scale" value="exactfit">';
 flash_tag +='<param name="quality" value="high">';
 flash_tag +='<embed src="'+e+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" ';
 flash_tag +='type="application/x-shockwave-flash"  WIDTH="'+c+'" HEIGHT="'+d+'"></embed></object>'
 document.write(flash_tag);
}

//PNG IMAGE TRASPARENT
if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent) { 
	document.writeln('<style type="text/css">img, input.image { visibility:hidden; } </style>'); 
	window.attachEvent("onload", fnLoadPngs); 
} 

function fnLoadPngs() { 
	var rslt = navigator.appVersion.match(/MSIE (\d+\.\d+)/, ''); 
	var itsAllGood = (rslt != null && Number(rslt[1]) >= 5.5); 

	for (var i = document.images.length - 1, img = null; (img = document.images[i]); i--) { 
		if (itsAllGood && img.src.match(/\.png$/i) != null) { 
			var src = img.src; 
			img.style.width = img.width + "px"; 
			img.style.height = img.height + "px"; 
			img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')" 
			img.src = "/v2/img_sub/space.gif"; 
			} 
		img.style.visibility = "visible"; 
	} 
} 