// JavaScript Document

function menuDerOver(obj)
{
	obj.bgColor = "#F4F5D0";
	if (obj.style)
	{
		obj.style.cursor = "hand";
	}
}
function menuDerOut(obj)
{
	obj.bgColor = "";
	window.status = "";
	if (obj.style)
	{
		obj.style.cursor = "default";
	}
}

// ventana para reproduccion de musica
function popupaudio(p, l, t, w, h) {
var windowprops = "location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no" + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
var URL = p;
popup = window.open(URL,"MenuPopup",windowprops);
}