function mOvr(src,clrOver) {
	  src.style.cursor = 'hand';
	  src.bgColor = clrOver;
}

function mOut(src,clrIn) {
	  src.style.cursor = 'default';
	  src.bgColor = clrIn;
}


function favoritos()

{
	if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) 	
	{
		var url="http://www.gamarod.com.ar/";
		var titulo="Gamarod.com.ar";
		window.external.AddFavorite(url,titulo);
	}
	else 
	{
		if(navigator.appName == "Netscape")
		alert ("Presione Crtl+D para agregar este sitio en sus Favoritos");
	}
}


function popUp(URL) {
   day = new Date();
   id = day.getTime();
   eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=650,height=500');");
}

   
function NewWindow(myname, w, h, scroll) {
   topage="http://www.parava.com/20Upd/WebExperto/index65.asp?affid=webexpertofabian&dname="+ document.searchform.dname.value
   var winl = (screen.width - w) / 2;
   var wint = (screen.height - h) / 2;
   winprops =
   "height="+h+",width="+w+",top="+wint+",left="+winl+
   ",scrollbars=" +scroll + ",resizable,status"
   win = window.open(topage, myname, winprops)
   if (parseInt(navigator.appVersion) >= 4) 
   { 
   win.window.focus(); 
   }
}



function mClk(src) {
    if(event.srcElement.tagName=='TD'){
	  src.children.tags('A')[0].click();
    }
}



function ventana(archivo,ancho,alto){
		window.open(archivo,"Encuesta","toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=yes, resizable=0, copyhistory=0, width=" + ancho + ", height=" + alto);
	}



function IrURL(formulario) {
	indice = formulario.lista.selectedIndex
	if (indice == -1)
		alert('Debe seleccionar una sección de la lista desplegable.')
	else
		window.open(formulario.lista.options[indice].value, "_self")
}

