function flash_or_else( flash, gif, width, height) {    document.write( '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ' + 		    'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0"' +		    ' style="border: 0px solid black" width="' + width + '" height="' + height + '">\n');    document.write( '<param name=movie value="' + flash + '">\n');    document.write( '<param name=quality value=high>\n');        if ((navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && 	 navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) ||	(navigator.plugins && navigator.plugins["Shockwave Flash"])) 	{	    document.write( '<embed src="' + flash + 			    '" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" ' + 			    'type="application/x-shockwave-flash" ' + 			    'width="' + width + '" ' +			    'style="border: 1px solid black" height="' + height + '">\n');	    document.write( '<\/embed>\n<\/object>');	    	}     else if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0))	{	    document.write('<a href=""><img src="' + gif + '" width=' + width + ' height=' + height +' border=0 style="border:solid 1px #000000;" /></a>');	    document.write( '<\/object>');	} }