function write_obj_flash(src, width, height){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+width+'" height="'+height+'">' 
				+	  '<param name="movie" value="'+src+'">' 
				+	  '<param name="quality" value="high">' 
		        +	  '<param name="wmode" value="transparent">'
				+	  '<embed src="'+src+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>' 
				+	'</object>');
}

function write_obj_shock(src, width, height){
	document.write('<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0" ID=Gpanel width='+width+' height='+height+'>' 
                +	  '<param name=src value="'+src+'">' 
                +	  '<param name=swRemote value="swSaveEnabled=\'true\' swVolume=\'true\' swRestart=\'true\' swPausePlay=\'true\' swFastForward=\'true\' swContextMenu=\'true\' ">' 
                +	  '<param name=swStretchStyle value=none>' 
                +	  '<PARAM NAME=bgColor VALUE=#FFFFFF>' 
				+	  '<embed src="'+src+'" bgColor=#FFFFFF  width='+width+' height='+height+' swRemote="swSaveEnabled=\'true\' swVolume=\'true\' swRestart=\'true\' swPausePlay=\'true\' swFastForward=\'true\' swContextMenu=\'true\' " swStretchStyle=none type="application/x-director" pluginspage="http://www.macromedia.com/shockwave/download/"></embed>' 
				+	'</object>');
}

