function intro(){
texto='<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="600" height="550" id="intro" align="middle">';
texto=texto+'<param name="allowScriptAccess" value="sameDomain" />';
texto=texto+'<param name="movie" value="intro.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" /><embed src="intro.swf" quality="high" wmode="transparent" bgcolor="#ffffff" width="600" height="550" name="intro" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
document.write(texto);
}

function show(){
if(navigator.appName == "Microsoft Internet Explorer")
{
	screenY = document.body.offsetHeight
	screenX = window.screen.availWidth
}
else
{
	screenY = screen.height;
	screenX = screen.width;
}

leftvar = (screenX - 600) / 2
LowPos = (screenY - 550) / 2
TopPos=parseInt(document.getElementById("moveit").style.top, 10)
//LowPos=50
if (window.hideme){ window.clearInterval(hideme)}
showme=window.setInterval("Appear()",5) 
}

function Appear(){
tmp = parseInt(document.getElementById("moveit").style.top, 10)
if ( tmp < LowPos) 
{
tmp += 3
document.getElementById("moveit").style.top = tmp + "px"
}
else if (window.showme)
{
clearInterval(window.showme)//
}
}

function hide(){ 
document.getElementById("moveit").style.visibility = 'hidden'
}

function hideit(){
tmp = parseInt(document.getElementById("moveit").style.top, 10)
if (tmp > TopPos) {
tmp -= 3
document.getElementById("moveit").style.top = tmp + "px" 
}
else if (window.hideme){
window.clearInterval(hideme)
}
}
