// ---------------------------------------------------------------
function w360(page)
{
	window.open(page, "w360", "toolbar=0, directories=0, location=0, menubar=0, scrollbars=0, resizable=1, width=660, height=480");
}

// ---------------------------------------------------------------

function wReglamentacion()
{
	window.open("reglamentacion.htm", "reglamentacion", "toolbar=0, directories=0, location=0, menubar=0, scrollbars=1, resizable=1, width=660, height=500");
}

// ---------------------------------------------------------------

function wbodegas()
{
	window.open("bodegas.htm", "bodegas", "toolbar=0, directories=0, location=0, menubar=0, scrollbars=0, resizable=1, width=740, height=400");
}

// ---------------------------------------------------------------

function menu_comp()
{
	strMenu = "";
	strMenu += "<li><a href='comp_home.htm'>Inicio</a></li>";
	strMenu += "<li><a href='comp_servicios.htm'>Servicios</a></li>";
	strMenu += "<li><a href='comp_actividades.htm'>Actividades</a></li>";
	strMenu += "<li><a href='comp_informacion.htm'>Información</a></li>";
	strMenu += "<li><a href='comp_contacto.htm'>Contacto</a></li>";
	strMenu += "<li><a href='javascript:;'>Fotos</a></li>";
	strMenu += "<li><a href='comp_fcomplejo.htm'>&nbsp;&nbsp;&nbsp;&nbsp;Complejo</a></li>";
	strMenu += "<li><a href='comp_fcabana.htm'>&nbsp;&nbsp;&nbsp;&nbsp;Cabañas</a></li>";
	strMenu += "<li><a href='comp_factividades.htm'>&nbsp;&nbsp;&nbsp;&nbsp;Actividades</a></li>";
	strMenu += "<li><a href='javascript:w360(\"com_360.htm\");'>&nbsp;&nbsp;&nbsp;&nbsp;Fotos de 360º</a></li>";
	strMenu += "<li><a href='comp_video.htm' target='_blank'>Video</a></li>";
	strMenu += "<li><a href='comp_comollegar.htm'>Como llegar</a></li>";	
	strMenu += "<li><a href='javascript:wReglamentacion()'>Reglamentacion</a></li>";

	document.getElementById("menu").innerHTML = strMenu;
	
}

// ---------------------------------------------------------------

function menu_vip()
{
	strMenu = "";
	strMenu += "<li><a href='vip_home.htm'>Inicio</a></li>";
	strMenu += "<li><a href='vip_servicios.htm'>Servicios</a></li>";
	strMenu += "<li><a href='vip_contacto.htm'>Contacto</a></li>";
	strMenu += "<li><a href='vip_fotos.htm'>Fotos</a></li>";
	strMenu += "<li><a href='javascript:w360(\"vip_360.htm\");'>Fotos de 360º</a></li>";	
	strMenu += "<li><a href='vip_comollegar.htm'>Como llegar</a></li>";
	strMenu += "<li><a href='javascript:wReglamentacion()'>Reglamentacion</a></li>";
	document.getElementById("menu").innerHTML = strMenu;
		
}

// ---------------------------------------------------------------

function init_comp()
{
	menu_comp();
}

// ---------------------------------------------------------------

function init_vip()
{
	menu_vip();
}

// ---------------------------------------------------------------

function winLoad(urlimg){

	var strHTML = "";

	strHTML += "<html>";
	strHTML += "<head>";
	strHTML += "<title>galeria de fotos. cabanasdechacras.com.ar</title>";
	strHTML += "<style>";
	strHTML += "	* { font-family: 'Century Gothic', Arial, Verdana;  }";
	strHTML += "	table { width:100%; border: 1px solid #ccc; }";
	strHTML += "	th { background-color: #e4e4e4; text-align: right; }";
	strHTML += "	td { text-align: center; }";
	strHTML += "	a { font-weight: normal; text-decoration: none; color: #333; }";
	strHTML += "	a:hover { color: #FF3300; }";
	strHTML += "</style>";
	strHTML += "</head>";
	strHTML += "<body leftmargin='0' topmargin='0'>";

	strHTML += "<table align='center'>";
	strHTML += "<tr><th><a href='javascript:window.close()'>cerrar ventana</a></th></tr>";
	strHTML += "<tr><td align='center'><img src='"+ urlimg +"' width='700' height='560' border='0' alt='' /></td></tr>";
	strHTML += "</table>";
	strHTML += "</body>";
	strHTML += "</html>";

	var cwin = window.open("","gfotos","toolbar=0, directories=0, location=0, menubar=0, scrollbars=0, resizable=1, width=760, height=600")
	cwin.document.write(strHTML)
	cwin.document.close()
}

// ---------------------------------------------------------------
