


	var key_tab = 9;
	var basic = true;

	
	
	
				function getbrowserwidth()
					{
					if (navigator.userAgent.indexOf("MSIE") > 0)
						{
						return(document.body.clientWidth);
						}
					else
						{
						return window.outerWidth;
						}
					}
				function getbrowserheight()
					{
						if (navigator.userAgent.indexOf("MSIE") > 0)
							{
							return(document.body.clientHeight);
							}
						else
							{
							return(window.outerHeight);
							}
					}
					
					
	function openWindow(direccion, winName, pantallacompleta, herramientas, direcciones, estado, barramenu, barrascroll, cambiatamano, ancho, alto, variable){ 
	
		var izquierda  = (getbrowserwidth()) ? (screen.width-ancho)/2 : 0;
		var arriba = (getbrowserheight()) ? (screen.height-alto)/2 : 0; 
		
		alert ("Ancho: "+izquierda)

		var opciones = "fullscreen=" + pantallacompleta + 
					 ",toolbar=" + herramientas + 
					 ",location=" + direcciones + 
					 ",status=" + estado + 
					 ",menubar=" + barramenu + 
					 ",scrollbars=" + barrascroll + 
					 ",resizable=" + cambiatamano + 
					 ",width=" + ancho + 
					 ",height=" + alto + 
					 ",left=" + izquierda + 
					 ",top=" + arriba; 
	
		var ventana = window.open(direccion,"ventana",opciones,variable); 
	
	} 
	
	

			

	function deleteConfirm(este,formName,theURL) {
		if (confirm("Esta seguro que quiere eliminar "+ este +"? ")) {
			if (formName != null) {
				formName.submit()
			} else {
				window.location.href = theURL
			}
		}
	}

	function processTab() {
		if (window.event.keyCode == key_tab) 
		{
		var s = document.selection;
		var tr = s.createRange();
		if ( tr != null ) 
			tr.text = "\t";
			window.event.returnValue=false;
		}
	}

//editor html de foros
	_editor_url = "htmlarea/";
	var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]);
	if (navigator.userAgent.indexOf('Mac')        >= 0) { win_ie_ver = 0; }
	if (navigator.userAgent.indexOf('Windows CE') >= 0) { win_ie_ver = 0; }
	if (navigator.userAgent.indexOf('Opera')      >= 0) { win_ie_ver = 0; }
	if (win_ie_ver >= 5.5) {
		document.write('<scr' + 'ipt src="' +_editor_url+ 'editor.js"');
		document.write(' language="Javascript1.2"></scr' + 'ipt>');  
	} else {document.write('<scr'+'ipt>function editor_generate() { return false; }</scr'+'ipt>');}
	

//Función campos formularios obligatorios
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}


function MM_validateForm() { //v4.0
  var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
    if (val) { nm=val.name; if ((val=val.value)!="") {
      if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
        if (p<1 || p==(val.length-1)) errors+='- '+nm+' debe contener un e-mail válido.\n';
      } else if (test!='R') { num = parseFloat(val);
        if (isNaN(val)) errors+='- '+nm+' debe contener un número.\n El número sin espacios por favor.';
        if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
          min=test.substring(8,p); max=test.substring(p+1);
          if (num<min || max<num) errors+='- '+nm+' debe contener un numero entre '+min+' y '+max+'.\n';
    } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' es requerido.\n'; }
  } 
  if (errors) alert('El siguiente error ha ocurrido:\n'+errors);
  document.MM_returnValue = (errors == '');
}



function imprimir() {
    window.print();
}


//<![CDATA[
// pestanas dinamicas

function limpiaDivMenuPestana(obj) {
while(obj.firstChild) obj.removeChild(obj.firstChild);
}
function cambiaMenuPestana(conjuntoPestanas,divContenedor,nuevoDiv,quePestana) {
// clona el elemento 'nuevoDiv' y lo asigna a contenidoNuevo
contenidoNuevo = document.getElementById(nuevoDiv).cloneNode(true);
// limpia el contenido del 'divContenedor'
limpiaDivMenuPestana(document.getElementById(divContenedor));
// añade el elemento clonado al 'divContenedor'
document.getElementById(divContenedor).appendChild(contenidoNuevo);
// ponemos todas la pestañas inactivas en CSS
identidadUl=document.getElementById(conjuntoPestanas);
nodosUl=identidadUl.getElementsByTagName('h4');
cuantosNodos=nodosUl.length;
for( i=0 ; i < cuantosNodos ; i++ )
{
nodoActual=nodosUl[i];
nodoActual.className=null;
}
// y activamos la pestana que corresponda asignándole el estilo CSS
identidadLetra = document.getElementById(quePestana);
identidadLetra.className = 'activo';
}
// fin pestanas dinamicas
//]]>



//botones votaciones
function rate(val){
document.form_votaciones.voto.value = val

enviarFormularioAjax('/comun/i_votos_ajax.asp','form_votaciones','div_votos')
//document.form_votaciones.submit()
//setTimeout('markSubmit()', 100)
}

function markSubmit(){
document.getElementById("div_votos").innerHTML = "<span class='MsgFont'>Gracias por votar</span>"
}
//fin votaciones


