// JavaScript Document
function includeSwf(width,height,src)
{
	document.write (
      '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"\n'+
	  'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,16,0"\n'+
	  'width="'+width+'" height="'+height+'">\n'+
        '<param name="movie" value="'+src+'">\n'+
        '<param name="quality" value="high">\n'+
		'<param name="wmode" value="transparent">\n'+
		'<param name="menu" value="false">\n'+
        '<embed src="'+src+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" wmode="transparent"></embed>\n'+
      '</object>');
	
}
