function AU_OpenWindow(url,pWidth,pHeight)
{
	window.open(url, "ventana", "dependent=yes,resizable=no,directories=no,location=no,menubar=no,scrollbars=yes,statusbar=no,tittlebar=no,width=" + pWidth + ",height=" + pHeight);
}

function Ventana_Recurso(id, url, pWidth, pHeight, AltoMaximo)
{
	if (AltoMaximo == true)
		pHeight = screen.height - (screen.height / 5);
	
	var left = (screen.width / 2) - (pWidth / 2);
	var top = (screen.height / 2) - (pHeight / 2);	

	ventana = window.open(url, "ventana_" + id, "dependent=yes,resizable=yes,directories=no,location=no,menubar=no,scrollbars=yes,statusbar=no,tittlebar=no,width=" + pWidth + ",height=" + pHeight + ",left=" + left + ",top=" + top);
	ventana.focus();
}

function Ventana_Recurso2(id, url, pWidth, pHeight, AltoMaximo)
{
	if (AltoMaximo == true)
		pHeight = screen.height - (screen.height / 5);
	
	var left = (screen.width / 2) - (pWidth / 2);
	var top = (screen.height / 2) - (pHeight / 2);	

	ventana = window.open(url, "ventana_" + id, "dependent=yes,resizable=no,directories=no,location=no,menubar=no,scrollbars=yes,statusbar=no,tittlebar=no,width=" + pWidth + ",height=" + pHeight + ",left=" + left + ",top=" + top);
	ventana.focus();
}


