function RunFlash(name) {
   document.write('<object type="application/x-shockwave-flash"\n');
   document.write('data="img/current.swf?path='+name+'"\n');
   document.write(' width="853" height="197"><param name="movie"\n');
   document.write('value="img/current.swf?path='+name+'" /><PARAM name="wmode" value="opaque"></object>\n');
}

function showDrop(id) {
		el=document.getElementById(id);
		el.style.display="block";
}

function hideDrop(id) {
		el=document.getElementById(id);
		el.style.display="none";
}