// JavaScript Document
var active, content, sidePanel;
function changepic(name1) {
if (name1 != active) {	
		document[name1].src="graphics/menus/" + name1 + "_o.jpg"; 
		}
	}
function restorepic(name2) {
if (name2 != active) {	
  	document[name2].src="graphics/menus/" + name2 + ".jpg"; 
		}
  }
function changeframe(name3) {
	//showTab(name3);
	//if (parent.contentpanel != null) 
	{
		if (name3=="wsh") { 
			location.href = "index.html"; //content
			}
		else if (name3=="os") { 
			location.href = "onlinesales.html"; //content
			}
		else if (name3=="cs") {
			location.href = "customsoftware.html"; //content
			}
		else if (name3=="sc") {
			location.href = "supportcentre.html"; //content
			} 
		else if (name3=="car") {
			location.href = "careers.html"; //content
			}
		else if (name3=="sm") {
			location.href = "sitemap.html"; //content
			} 
		else if (name3=="ma") {
	  parent.contentpanel.location.href = "pages/login.html"; //content
			//parent.contentpanel.location.href = "test.jsp?action=load&url=ma&pageredirect=pages/login.jsp"; 
			}
		} 
	}
function showTab(tab) {
	active = tab;
  //Images
	if (document["wsh"] != null) {
		document["wsh"].src="graphics/menus/wsh.jpg"; 
		document["os"].src="graphics/menus/os.jpg";
		document["cs"].src="graphics/menus/cs.jpg";
		document["sc"].src="graphics/menus/sc.jpg";
		document["car"].src="graphics/menus/car.jpg";
		document["sm"].src="graphics/menus/sm.jpg";
		//document["ma"].src="graphics/menus/ma.jpg";
		}
		if (tab != "" && document[tab] != null) {
			document[tab].src="graphics/menus/" + tab + "_o.jpg";
		}
}

function setMainNav(tab,title) {
	showTab(tab);
	if (document.getElementById("bc3") != null) {
		document.getElementById("arrow2").style.display = "none";
		document.getElementById("bc3").style.display = "none";
		document.getElementById("bc2").innerHTML = title;
		document.getElementById("title").innerHTML = "<h1>" + title + "</h1>";
		}
	}

function setAccountNav(title) {
		showTab("ma");
		if (document.getElementById("bc3") != null) {
		document.getElementById("bc2").innerHTML = "<a onclick=\"javascript:parent.contentpanel.content.location.href='pages/myaccount/myaccount.jsp'\">My Account</a>";//breadcrumbs
		document.getElementById("arrow2").style.display = "block";
		document.getElementById("bc3").style.display = "block";
		document.getElementById("bc3").innerHTML = title;
		document.getElementById("title").innerHTML = "<h1>" + title + "</h1>";
		}
	}