function posDiv()
{
	if(document.getElementById('principal')){
	var browser=navigator.appName;
	temp1 = document.getElementById('principal').offsetLeft;
		
	menupos		= temp1 + 75;
	msgpos		= temp1 + 410;
	offset_menu = 10;
	offset_pie	= 480;			
			
	if(browser=="Netscape")
	{
		menupos		= menupos - 10;
		msgpos		= msgpos - 10;
		//offset_menu = 21;
		offset_pie = 470;
	}
		
	// Posicionamiento del MENU (horizontalmente)
	document.getElementById('menu').style.left=menupos+'px';
	
	// Ajuste del Alto del MENU
	document.getElementById('menu').style.height=document.getElementById('principal').offsetHeight-offset_menu+'px';
		
	// Posicionamiento del copyright del menu
	document.getElementById('pie').style.top=document.getElementById('principal').offsetHeight-offset_pie+'px';
		
	// Posicionamiento del mensaje flotante
	document.getElementById('mensaje').style.left=msgpos+'px';

	// Posicionamiento del mensaje flotante
	document.getElementById('mensaje-shadow').style.left=msgpos+1+'px';	

	}
}

function goTo(dire,mode)
{
	if(mode=="self")
	{
		window.location.href=dire;
	}
	else
	{
		window.open(dire);
	}
}

function manageLoad()
{
	document.getElementById('loader').style.display='none';
}

function cerrarFullScreen()
{
	$("#fullscreen").empty().hide();
}

function abreAudio()
{
	var ancho 	= 250;
	var alto	= 135;
	
	xpos=(screen.width/2)-(ancho/2);
	ypos=(screen.height/2)-(alto/2);
	window.open('audio.php', 'popUpAudio', 'resizable=false,width='+ancho+',height='+alto+',left='+xpos+',top='+ypos+'');
}
	
function ventanaSecundaria (URL)
{ 
	window.open(URL,"ventana1","width=780, height=500, scrollbars=no, menubar=no, location=no, resizable=no") 
}
	
function ventanaSecundaria2 (URL)
{ 
	window.open(URL,"ventana1","width=900, height=603, scrollbars=no, menubar=no, location=no, resizable=no") 
} 