// ----------------------------- Write Capsule Flash  ----------------------------------

function writeCapsuleFlash(filename, width, height,image,linkname,linktype) {
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="'+width+'" height="'+height+'"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="'+filename+'?image='+image+'&linkname='+linkname+'&linktype='+linktype+'" /><param name="quality" value="high" /><param name="menu" value="false" /><param name="wmode" value="transparent" />'
    + '<embed src="'+filename+'?image='+image+'&linkname='+linkname+'&linktype='+linktype+'" quality="high"'
    + 'width="'+width+'" height="'+height+'" name="splash" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
	+ 'menu="false"'
	+ 'wmode="transparent"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags)
}
// -->