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