var s = "";

s = "<TABLE id=menu cellpadding=\"2\" cellspacing=\"0\" " +
	"style=\"position:absolute;display:none;BORDER-BOTTOM: #000000 1px solid;BORDER-LEFT: #000000 1px solid;BORDER-RIGHT: #000000 1px solid;BORDER-TOP: #000000 1px solid;\"></TABLE>";

document.write(s);

function ShowMenu(posV, title, arr){
	var str = "", i = 0, tr, td;

	while(menu.rows.length > 0){
		menu.deleteRow(0);
	}

	tr = menu.insertRow();
	tr.className = "Titulo";
	td = tr.insertCell();
	td.setAttribute("nowrap", true);	
	td.innerHTML = "&nbsp;" + title +"&nbsp;&nbsp;";

	td = tr.insertCell();
	td.innerHTML = "&nbsp;<a href=\"javascript:CloseMenu()\">X</a>&nbsp;";

	for(i=0; i<arr.length; i++){
		tr = menu.insertRow();
		tr.className = "Apartado";
		td = tr.insertCell();
		td.colSpan = 2;
		td.setAttribute("nowrap", true);	
		td.innerHTML = "&nbsp;<a href=\"javascript:AbrirVentana(" + arr[i][2] + "," +
						arr[i][3] + ",'" + arr[i][1] + "')\" style=\"color:black\">" + 
						arr[i][0] + "</a>&nbsp;";
	}
	
	menu.style.pixelTop= document.body.scrollTop+(event==null? 0:event.clientY);
	menu.style.pixelLeft= (event==null? 0:event.clientX) + posV;
	menu.style.display = "block";
}

function AbrirVentana(x, y, url){
	CloseMenu();
	window.open(url, null, "height=" + y + ",width=" + x + ",status=no,toolbar=no,menubar=no,location=no");
}

function CloseMenu(){
	menu.style.display = "none";
}