// JScript source code

function loadFlash(filename, width, height, id, image, imagealt) 
{
	document.write('<div><object type="application/x-shockwave-flash" data="'+filename+'" width="'+width+'" height="'+height+'" id="'+id+'">')
	document.write('<param name="allowScriptAccess" value="sameDomain" />')	
	document.write('<param name="wmode" value="transparent"/>')
	document.write('<param name="Movie" value="'+filename+'"/>')
	document.write('<a href="http://www.adobe.com/products/flashplayer/"><img style="border:none" src="/flash/'+image+'" alt="'+imagealt+'" /></a>')
	document.write('</object></div>')
}
