function LoadPage(iArrayindex)
{
// Remove any content from the layer and display
	// a loading message
	var oFrame = document.getElementById("contentPop");
	var oTitle = document.getElementById("popup_title");
					
	if (oFrame && oTitle)
	{
		oTitle.innerHTML = "";
		oFrame.innerHTML = "";
	}
	
	sTitle = GetTitle(iArrayindex);
	sResult = GetDescription(iArrayindex);
	
	oTitle.innerHTML = sTitle;
	oFrame.innerHTML = sResult; 

}

function GetTitle(index){
	
	var Titles = "Construction|Engineering|Property Development & Consulting Services";
	
	var arTitles = Titles.split("|");
	
	return arTitles[index];
	
}

function GetDescription(index){
	
	var Description = "First Description|Second Description|Third Description";
	
	var arDescription = Description.split("|");
	
	return arDescription[index];
	
}

//==================================================================================
function LoadImage(sPage)
{
	
	var oFrame = document.getElementById("contentImagePop");
			
	if (oFrame)
	{
		oFrame.innerHTML = "";
	}
	
	var sResult = GetImage();
	
	oFrame.innerHTML = sResult; 
			
}

function GetImage(index) {	
	var Images = "<img src='images/gusset-bag-redraw.gif' alt='' width='375' height='524' border='0' />";
	
	return Images;	
}
