<!--
			function ShowDCR (src, w, h, sw1) {
				if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) {
					// include Embed for Navigator and Safari
					ShowDCREmbed (src, w, h, sw1);
				} else {
					// XHTML valid Object tag only
					ShowDCRObject (src, w, h, sw1);
				}
			}
			function ShowDCRObject (src, w, h, sw1) {
				var html = '';
				html += '<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=10,0,0,0" type="application/x-director" data="'+src+'" width="'+w+'" id="gameplayscreen" height="'+h+'">';
				html += '<param name="src" value="'+src+'" />';
				html += '<param name="id" value="gameplayscreen" />';
				html += '<param name="sw1" value="'+sw1+'" />';
				html += '<param name="swRemote" value="swSaveEnabled=\'false\' swVolume=\'true\' swRestart=\'false\' swPausePlay=\'false\' swFastForward=\'false\' swContextMenu=\'false\' "/>';
				html += '<param name="swStretchStyle" value="fill" />';
				html += "</object>";
				document.write(html);
			}
			
			function ShowDCREmbed (src, w, h, sw1) {
				var html = '';
				html += '<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=10,0,0,0" ';
				html += 'id="gameplayscreen" width="'+w+'" height="'+h+'">';
				html += '<param name="src" value="'+src+'" />';
				html += '<param name="sw1" value="'+sw1+'" />';
				html += '<param name="swRemote" value="swSaveEnabled=\'false\' swVolume=\'true\' swRestart=\'false\' swPausePlay=\'false\' swFastForward=\'false\' swContextMenu=\'false\' "/>';
				html += '<param name="swStretchStyle" value="fill" />';
				html += '<embed src="'+src+'"  width='+w+' height='+h+'';
				html += ' id=\'gameplayscreen\' swRemote="swSaveEnabled=\'false\' swStretchStyle=\'fill\' swVolume=\'true\' swRestart=\'false\' swPausePlay=\'false\' swFastForward=\'false\' swContextMenu=\'false\'" '; 
				html += ' swStretchStyle="fill" type="application/x-director" pluginspage="http://www.macromedia.com/shockwave/download/" sw1="'+sw1+'" ></embed>';
				html += '</object>';
				document.write(html);
			}
			
// -->