function move()
{
	if(navigator.appName=="Microsoft Internet Explorer")
	{
		document.getElementById("scrolltext").style.top = document.body.clientHeight-document.getElementById("scrolltext").scrollHeight+document.body.scrollTop-10+"px";
	}
	else
	{
		//document.getElementById("scrolltext").style.top = document.body.clientHeight-document.getElementById("scrolltext").scrollHeight+document.body.scrollTop+"px";
	}	
}


function show()
{
	move();
	document.getElementById("scrolltext").style.visibility="visible";
}


function show_flash(id, name_swf, width, height) {
    if (id && name_swf && document.getElementById(id) && width && height) {
        var flash='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="fp" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+name_swf+'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="'+name_swf+'" quality="high" bgcolor="#ffffff" width="'+width+'" height="'+height+'" name="fp" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
	document.getElementById(id).innerHTML=flash;
    }
}

