﻿// margarita
function cambia_clase (cosa, estilo)
		{  cosa.className = estilo;
		}
//margarita
function resalta_texto (boton,color)
		{  boton.style.color = color;
		}
// pop-up window
function pop(ur,title)
{
    window.open(ur,title,"height=500px,width=800px,scrollbars=yes");
}

