function flashobject(sourceURL,width,height)
{
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width=' + width + ' height=' + height + ' id="deptsensors" align="middle">\n');
document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
document.write('<param name="movie" value=' + sourceURL + ' />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="wmode" value="transparent" />\n');
document.write('<param name="menu" value="false" />\n');
document.write('<param name="bgcolor" value="#ffffff" />\n');
document.write('<embed src=' + sourceURL + ' quality="high" wmode="transparent" menu="false" bgcolor="#000000" width=' + width + ' height=' + height + ' name="" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
document.write('</object>\n');
}

function writeJS(obj){
     var str='';
     str+='<iframe src='+obj+' frameborder="0" scrolling="auto" class="frame"></iframe>';
     document.write(str);
}

function show(id)
{
var obj = document.getElementById(id);
	obj.style.display = "";
}
function hide(id)
{
var obj = document.getElementById(id);
	obj.style.display = "none";
}
window.onload = function () 
{
	hide('more');
	hide('clos');
	hide('wel');
	show('more');
}