// JavaScript Document


/********************************
*								*
*	VARIABLES GLOBALES			*
*								*
********************************/
var mostrar = (document.all)? "block":"table-cell";
var ocultar = (document.all)? "none":"none";
var ventanaApp;
var ventanaPlugins;

/*
	SECCIONES
*/

function secMouseHover(numtab){
	
	var obj, style;
	
		if(document.getElementById && (obj = document.getElementById(secciones[numtab]))
		&& (style = obj.style))
		{
		style.backgroundPosition = '0px -78px';
		}
}

function secMouseOut(numtab){
	var obj, style;
	
	
	if (secActiva != numtab)
	{

		if(document.getElementById && (obj = document.getElementById(secciones[numtab]))
		&& (style = obj.style))
		{
		style.backgroundPosition = '0px 0px';
		}
	}
}



function launchSec(seccion)
{
	window.location = "index.php?sec="+seccion;	
}
/*
	TABS
*/

function tabClick(tab,seccion){
	window.location = "index.php?sec="+seccion+"&tab="+tab;	
}
function mOvr(src,clrOver) {
	src.style.cursor = 'hand';
	src.style.cursor = 'pointer';
	src.style.backgroundColor = clrOver;
	src.style.color = "#0000FF";
}

function mOut(src) {
	src.style.cursor = 'default';
	src.style.backgroundColor ="transparent";
	src.style.color = "#000000";
}

function mClk(src) {
	window.location=src;
}
		 
		 
function saltoExterno(url){
		ventanaPlugins = window.open(url,"Salto","","");
}





