// POPUPS 

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

// ROLLOVERS
<!--
	if (document.images) 
	{
	tabHOMEon = new Image();
	tabHOMEon.src = "../images/nav_home_over.gif";
	tabHOMEoff = new Image();
	tabHOMEoff.src = "../images/nav_home_off.gif";
	}
	{
	tabWELCOMEon = new Image();
	tabWELCOMEon.src = "../images/nav_welcome_over.gif";
	tabWELCOMEoff = new Image();
	tabWELCOMEoff.src = "../images/nav_welcome_off.gif";
	}
	{
	tabADVon = new Image();
	tabADVon.src = "../images/nav_advantages_over.gif";
	tabADVoff = new Image();
	tabADVoff.src = "../images/nav_advantages_off.gif";
	}
	{
	tabREGIONon = new Image();
	tabREGIONon.src = "../images/nav_region_over.gif";
	tabREGIONoff = new Image();
	tabREGIONoff.src = "../images/nav_region_off.gif";
	}
	{
	tabABOUTon = new Image();
	tabABOUTon.src = "../images/nav_about_over.gif";
	tabABOUToff = new Image();
	tabABOUToff.src = "../images/nav_about_off.gif";
	}
	{
	tabPROPon = new Image();
	tabPROPon.src = "../images/nav_property_over.gif";
	tabPROPoff = new Image();
	tabPROPoff.src = "../images/nav_property_off.gif";
	}
	{
	tabSHOWon = new Image();
	tabSHOWon.src = "../images/nav_showcase_over.gif";
	tabSHOWoff = new Image();
	tabSHOWoff.src = "../images/nav_showcase_off.gif";
	}
	{
	tabNEWSon = new Image();
	tabNEWSon.src = "images/nav_news_over.gif";
	tabNEWSoff = new Image();
	tabNEWSoff.src = "images/nav_news_off.gif";
	}
	{
	tabCONTACTon = new Image();
	tabCONTACTon.src = "../images/nav_contact_over.gif";
	tabCONTACToff = new Image();
	tabCONTACToff.src = "../images/nav_contact_off.gif";
	}
				
	function imgOn(imgName)
	{
	if (document.images) 
		{
		document[imgName].src = eval(imgName + "on.src");
		}
	}

	function imgOff(imgName)
	{
	if (document.images) 
		{
		document[imgName].src = eval(imgName + "off.src");
		}
	}

//-->