var m_oUnidades = null;
var m_oAlquileres = null;

window.onload = function()
	{
		var lWidth = 540;
		var lLeft = (screen.width / 2) - (lWidth / 2);
		m_oUnidades = new Window(
			{
				className: "alphacube",
				title: "SolyLuna 1 | Punta del Este - Uruguay",
				width: lWidth,
				height: 500,
				top: 50,
				left: lLeft,
				minimizable: false,
				maximizable: false,
				recenterAuto: false,
				resizable: false,
				showEffect: Element.show,
				hideEffect: Element.hide
			}
		);
		m_oAlquileres = new Window(
			{
				className: "alphacube",
				title: "SolyLuna 1 | Punta del Este - Uruguay",
				width: lWidth,
				height: 795,
				top: 50,
				left: lLeft,
				minimizable: false,
				maximizable: false,
				recenterAuto: false,
				resizable: false,
				showEffect: Element.show,
				hideEffect: Element.hide
			}
		);
	};

function cargarBanners(pIdioma)
{
	switch(pIdioma)
	{
		case "es": pIdioma = "spanish"; break;
		case "pt": pIdioma = "portuguese"; break;
		default: pIdioma = "english";
	}
	var oFlash = new SWFObject("banners/" + pIdioma + "/paez-vilaro/paez-vilaro.swf", "", "340", "128", "7", "#FFFFFF", true);
	with(oFlash)
	{
		addParam("menu", "false");
		addParam("wmode", "transparent");
		write("divPaezVilaro");
	}
}

function guardarIdioma(pIdioma)
{
	x_GuardarIdioma(pIdioma, function(pCadena) {});
}

function abrirUnidadesDisponibles()
{
	m_oUnidades.show();
	x_RetornarUnidades(function(pCadena)
		{
			m_oUnidades.setHTMLContent(pCadena);
		});
}

function abrirAlquileres()
{
	m_oAlquileres.show();
	x_RetornarAlquileres(function(pCadena)
		{
			m_oAlquileres.setHTMLContent(pCadena);
		});
}