ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

x=47;z=43;tempo=0;contador=0;
function acionar(){setTimeout('iniciar()',40);}
function iniciar(){if (x > 20){x = x - 2;z = z + 2;mostrar1(x);mostrar2(z);acionar();}}

function mostrar1(y) {
	if (ns4) document.layers['x1'].height = y
	else if (ie4) document.all['x1'].style.height = y}

function mostrar2(y) {
	if (ns4) document.layers['x1'].top = y
	else if (ie4) document.all['x1'].style.top = y}

//function esconder(){contador=setTimeout('x=47;mostrar1(x);z=43;mostrar2(z);',10000)}
function esconder(){contador=setTimeout('x=47;z=43',10000)}
function manter(){window.clearTimeout(contador)}