// JavaScript Document

function openPage(page){
	switch(page){
		case "h" : location.href="index.html" ;break;
		case "u" : location.href="Utopia.html" ;break;
		case "aa" : location.href="Application-Areas.html" ;break;
		case "bs" : location.href="Business-Strategy.html" ;break;
		case "au" : location.href="About-Us.html" ;break;
		case "c" : location.href="Contact-Us.html" ;break;		
		default : location.href="index.html" ;break;
	}
}

function doLoad(){
}
function getEl(eid){return document.getElementById(eid);}
