// FOR IE FLICKER BUG
if (document.all) {
	try {document.execCommand("BackgroundImageCache", false, true);} 
	catch(err) {}
}


var msg = '<p>You need Flash to view this, please download it <a href="http://www.adobe.com/go/getflashplayer" target="_blank">here</a>.</p>'
    
// EMBEDS THE FLASH
function embedFlash (url,w,h) {
document.write('<object type="application/x-shockwave-flash" data="'+url+'" width="'+w+'" height="'+h+'" menu="false" wmode="transparent" loop="false" allowScriptAccess="sameDomain">');
document.write('<param name="movie" value="'+url+'">');
document.write('<param name="menu" value="false">');
document.write('<param name="loop" value="false">');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="allowScriptAccess" value="sameDomain">');
document.write(msg);
document.write('<\/object>');
}
