// JScript source code

function loadFlash(filename, width, height, id, image, imagealt) 
{
	document.write('<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="Movie" value="'+filename+'"/>')
	document.write('<param name="scale" value="noscale" /><param name="salign" value="lt" />')
	document.write('<a href="http://www.adobe.com/products/flashplayer/"><img style="border:none" src="images/'+image+'" alt="+imagealt+" /></a>')
	document.write('</object>')
}
