/* SOLUTIONS SUMMARY - SHOW/HIDE DIV */
function setVisibility(id, visibility) {
document.getElementById('market').style.display = "none";
document.getElementById('products').style.display = "none";
document.getElementById('brands').style.display = "none";
document.getElementById('stakeholders').style.display = "none";
document.getElementById('performance').style.display = "none";
document.getElementById(id).style.display = visibility;
}

/* Picture Popup */
function PopupPic(sPicURL) { 
	window.open("/HI_Assets/images/pages/SI_popupimage.htm?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
}
