// JavaScript Document

/*---redireccion-realizada por form---*/
function red_gen(a,b,c,d,e,f)
{  	//a   = formulario
	//b   =	URL. 
	//c   = extension
	//d   =	nombre variable
	//e   =	valor variable	
	//f tiempo	 

	
	
 	formulario = document.forms[a];
 
 
 	
	formulario.action = b + c;
	if (e != "")
	{	 formulario.action += "&" + d + "=" + e;
	}	

	/*---si-existe-un-tiempo-especificado...---*/
	if ((f != "") && (typeof(f) == "number"))
	{	setTimeout("formulario.submit();",f);
	    exit();
	}
	else
	{	
		formulario.submit();
	}	
}

function Cambiar_Formularios(a)
{   
	if (a == 0)
	{   document.getElementById('form_a').style['display'] = 'inline';
		document.getElementById('form_c').style['display'] = 'inline';
		document.getElementById('contenedor_form').style['display'] = 'inline';
		

		
	}
	else
	{   document.getElementById('form_a').style['display'] = 'none';
		document.getElementById('form_c').style['display'] = 'none';
		document.getElementById('contenedor_form').style['display'] = 'none';

		

	}
	
}
function Crear_Pestanyas(a,b,c)
{	//a   =   Numero de Bloques
	//b 	= 	Numero de Pestantas
	//c 	= 	Valor de css
	
	setLinkSrc(c);	
	tp1 = new WebFXTabPane( document.getElementById( "tabPane1" ) );
	for (con_pes = 1; con_pes <= b ; con_pes++)
	{   tp1.addTabPage( document.getElementById( "tabPage" + con_pes ) );
	}
	setupAllTabs();
	
    tp1.setSelectedIndex(0);
    
}

