function changeSection(id) {

identity=document.getElementById(id);

aboutUs=document.getElementById('about_us')
propertyPortfolio=document.getElementById('property_portfolio')
investorRelations=document.getElementById('investor_relations')
contactUs=document.getElementById('contact_us');


if(identity.className=="section")
{

aboutUs.className="section";
propertyPortfolio.className="section";
investorRelations.className="section";
contactUs.className="section";

identity.className="sectionOn";}


else if(identity.className=="sectionOn")
{identity.className="section";}

}



function changeSubSection(id) {

identity=document.getElementById(id);

financialPerformance=document.getElementById('financial_performance');
sharePriceInfo=document.getElementById('share_price_info');
shareholderInfo=document.getElementById('shareholder_info');
newsAlerts=document.getElementById('news_alerts');
investorContacts=document.getElementById('investor_contacts');
aim=document.getElementById('aim_rule_26');




if(identity.className=="subSection")
{
financialPerformance.className="subSection";
sharePriceInfo.className="subSection";
shareholderInfo.className="subSection";
newsAlerts.className="subSection";
investorContacts.className="subSection";
aim.className="subSection";
identity.className="subSectionOn";}


else if(identity.className=="subSectionOn")
{identity.className="subSection";}

}





function initialiseMenu(menuID, subMenuID) {

identity=document.getElementById(menuID);
identity2=document.getElementById(subMenuID);

aboutUs=document.getElementById('about_us');
propertyPortfolio=document.getElementById('property_portfolio');
investorRelations=document.getElementById('investor_relations');
contactUs=document.getElementById('contact_us');

financialPerformance=document.getElementById('financial_performance');
sharePriceInfo=document.getElementById('share_price_info');
shareholderInfo=document.getElementById('shareholder_info');
newsAlerts=document.getElementById('news_alerts');
investorContacts=document.getElementById('investor_contacts');
aim=document.getElementById('aim_rule_26');

aboutUs.className="section";
propertyPortfolio.className="section";
investorRelations.className="section";
contactUs.className="section";


financialPerformance.className="subSection";
sharePriceInfo.className="subSection";
shareholderInfo.className="subSection";
newsAlerts.className="subSection";
investorContacts.className="subSection";
aim.className="subSection";


identity.className="sectionOn";

if(subMenuID != ""){

identity2.className="subSectionOn";
}
}

function closeAllMenus(){
aboutUs=document.getElementById('about_us')
propertyPortfolio=document.getElementById('property_portfolio')
investorRelations=document.getElementById('investor_relations')
contactUs=document.getElementById('contact_us');

financialPerformance=document.getElementById('financial_performance');
sharePriceInfo=document.getElementById('share_price_info');
shareholderInfo=document.getElementById('shareholder_info');
newsAlerts=document.getElementById('news_alerts');
investorContacts=document.getElementById('investor_contacts');
aim=document.getElementById('aim_rule_26');

aboutUs.className="section";
propertyPortfolio.className="section";
investorRelations.className="section";
contactUs.className="section";


financialPerformance.className="subSection";
sharePriceInfo.className="subSection";
shareholderInfo.className="subSection";
newsAlerts.className="subSection";
investorContacts.className="subSection";
aim.className="subSection";
}


function AddToBookmarks (url,title)
{

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
}  

 function runSearch(keyword) {

              if (keyword=='' || keyword=='Search >>') {
                alert("Please enter a word or phrase")
                }
              else {
                var SearchURL = "/searchresults";
                SearchURL = SearchURL + "?queryString=" + keyword;
                location.href = SearchURL;
                }
                }
    