<!--	
		var isAbs = 0;

		var indexes = new Array("index", "villas", "pinar_del_rio", "havana", "matanzas");

		var titles  = new Array("Home", "Villas", "Pinar del Rio", "Havana", "Matanzas");
		var link    = new Array("index.shtml", "villas.shtml", "pinar-homes.shtml", "havana-homes.shtml", "matanzas-homes.shtml");
		var mail	= "Write Us";
		var contact = "contact.html";
		var code = '';
		var max = indexes.length;
		var abs_path = "http://www.cuba-houses.com/";

function GetMsg(arg)
{

	if (arg != 'it')
	{
		code+='<h1>Houses in this province are not available at this time.<br>';
		code+='The only ones availables right now are in the following provinces :<br>';
		
		var c=1;

		for(var i=1; i<max; i++)	//skip homepage
			if(link[i] != "unavailable.html")
			{
				if (c > 1) code+= ' | ';
				code+='<a href="'+link[i]+'" class="menu" onmouseover="window.status=\'\';return true;" ';
				code+='onmouseout="window.status=\'\';return true;">' + titles[i] + '</a> ';
				c++;
			}
		
		code +='</h1>';
		document.write(code);
	}
	else
	{
		code+='<h1>In questa provincia, non abbiamo sono case disponibili in questo momento.<br>';
		code+='Le uniche disponibili si trovano nelle province seguenti :<br>';
		
		var c=1;
		
		for(var i=1; i<max; i++)	//skip homepage
			if(link[i] != "indisponibile.html")
			{
				if (c > 1) code+= ' | ';
				code+='<a href="'+link[i]+'" class="menu" onmouseover="window.status=\'\';return true;" ';
				code+='onmouseout="window.status=\'\';return true;">' + titles[i] + '</a> ';
				c++;
			}
		code +='</h1>';
		document.write(code);
	}
	code = ''; c=0; max=0;
}

if(isAbs == 1) 
	for(var i=0;i<max;i++) link[i] = abs_path + link[i];

function GetMnu(pg, lng)
{
	if(lng == 'it')
	{   // Don't put "var" there. If you do, the variable will be declared even if the if is false
		titles  = new Array("Pagina Principale", "Ville", "Pinar del Rio", "LŽAvana", "Matanzas");
		link    = new Array("case-particular.shtml", "ville.shtml", "pinar-case-particular.shtml", "avana-case-particular.shtml", "matanzas-case-particular.shtml");
		mail	= "Scriveteci";
		contact = "contact-it.html";
	}

		var i;
		
		for(i = 0; i < max; i++)
		{
			link[indexes[i]] = link[i];
			titles[indexes[i]] = titles[i];
		}
		
		code = '<table cellspacing=0 cellpadding=0 border=1 bordercolor="#ffffff"><tr><td>';
		
		code += '<center><a href="'+contact+'" class="menu">'+mail+'</a></center>';

		code += '<table cellspacing=0 cellpadding=5 border=1 bgcolor="#C0C0CF" bordercolor="#FFFFFF" width="165" align="center">';

		for(i = 0; i < max; i++)
			{					
				if(indexes[i] != pg) // is not the current page
				{
					code+='<tr><td align="center" valign="middle">';
					code+='<a href="'+link[indexes[i]]+'" onmouseover="window.status=\'Go to ';
					code+=titles[indexes[i]] + '\';return true;" onmouseout="window.status=\'\';return true;"';
					code+='class="lnkMenu">' + titles[indexes[i]] +'</a></td></tr>';
				}
				else	// is
				{
					code+='<tr><td align="center" valign="middle">';
					code+='<img src="images/ptr.gif" border=0> ';
					code+='<font face="MS Sans Serif, sans-serif" size=2 color="#1A5D8F" style="font-weight:normal">';
					code+=titles[indexes[i]] + '</font></td></tr>';
				}
			}
			code+='</table></td></tr>';

			if(lng=='it')
			{
					code+='<tr><td align="center" valign="middle">';
					code+='<font face="MS Sans Serif, sans-serif" size=2 color="#1A5D8F" style="font-weight:normal">';
					code+='<a href="http://www.cubacom.net/popup/lacoronacion.htm" class="lnkmenu"> VOLI LAST MINUTE CUBA</a></font></td></tr>';
					
					code+='<tr><td align="center"><a href="links-it.html" class="notas2">Pagina dei Links</a></td></tr>';
			}
			else
				code+='<tr><td align="center"><a href="links.html" class="notas2">Cuba-Houses Links</a></td></tr>';
			
			code+='</table>';
			document.write(code);
			code='';
	}
	
function GetC()
{
	document.write('<font style="notas" color="#003366" size=1>' +
		           '&#169; 2003-2004 ~ cuba-houses.com ~ All Rights Reserved</font>');
}
//-->