
/********************************************************************
/********************************************************************
/**
/**  Proyecto HCMS Herarchical Content Managment System 
/** (Sistema Manejador de Contenido Jerárquico)
/**  ------------------------------------
/**  Ver. 0.2 Beta
/** (c)2008 por Mike Rosas
/**  Mikzael@hotmail.com
/**
/**  Para más información, por favor leer el documento leeme.htm
/**
/********************************************************************
/********************************************************************/


function init(){

	//javascript: $('popo').slideDown({duration:1.5});

		var width = 777;
		var height = 587;
		var popo = 'popo';
		var left = ((screen.width/2)-(width/2)).round();
		var top = 0;

		//$('respuesta').innerHTML = 'width: ' + width + ' | height: ' + height + ' | popo: ' + popo + ' | left: ' + left + ' | top: ' + top;
		
		$(popo).setStyle({
			'left'   : left + 'px',
			'top'    : top + 'px'
		});

		$(popo).slideDown({duration: 1.5});

}

function scrolldown(frame) {
	$(frame).scrollTop += 20;
}

function scrollup(frame) {
	$(frame).scrollTop -= 20;
}



