// JavaScript Document
/**
 * showLayer
 * Show the text and image asociated to an document element
 *
 * @author: Marcelo E. Maraciotola para BitX S.A.
 * @date: 17/10/2005
 */
function showLayer( divisionID ){
	var obj;
	var args;
	var div;

	if ( divisionID != null ){
		if ((obj = document.all( divisionID )) != null){
			if (obj.style){
				obj=obj.style
			}
			obj.visibility='visible';
		}
	}
}

/**
 * hideLayer
 * Hide the text and image asociated to an document element
 *
 * @author: Marcelo E. Maraciotola para BitX S.A.
 * @date: 17/10/2005
 */
function hideLayer( divisionID){
	var obj;
	var args;
	var div;

	if ( divisionID != null )	{
		if ((obj = document.all( divisionID )) != null)		{
			if (obj.style){
				obj=obj.style
			}
			obj.visibility='hidden';
		}
	}
}

/**
 * logoAnim
 * Animate the Logo image
 *
 * @author: Marcelo E. Maraciotola para BitX S.A.
 * @date: 17/10/2005
 */
function logoAnim(){
	
	if ( BitXLogo.style.posTop < 15 ){
		BitXLogo.style.posTop += 5;
		window.setTimeout( "logoAnim();" , 1);
	}
}
