//hide email addresses
emailE='ouchuk.org'
emailE=('info' + '@' + emailE)

//highlight menu
var ready;
varPage1 = ""
varPage2 = ""
varPage3 = ""
varPage4 = ""
varPage5 = ""
varPage51 = ""
varPage6 = ""
varPage7 = ""
varPage8 = ""
varPage9 = ""

if 	(self.location.href == 'http://192.168.0.33/ouch/htdocs/html/')	{ varPage1 = 'active' }
if 	(self.location.href == 'http://ouchuk.org.truecp.co.uk/html/')	{ varPage1 = 'active' }
if 	(self.location.href == 'http://www.ouchuk.org/html/')	{ varPage1 = 'active' }

if 	(self.location.href.indexOf('default')!= -1)	{ varPage1 = 'active' }
if 	(self.location.href.indexOf('about')!= -1)	{ varPage2 = 'active' }
if 	(self.location.href.indexOf('community')!= -1)	{ varPage3 = 'active' }
if 	(self.location.href.indexOf('clusters')!= -1)	{ varPage4 = 'active' }
if 	(self.location.href.indexOf('other')!= -1)	{ varPage5 = 'active' }
if 	(self.location.href.indexOf('diagnostic')!= -1)	{ varPage51 = 'active' }
if 	(self.location.href.indexOf('workplace')!= -1)	{ varPage6 = 'active' }
if 	(self.location.href.indexOf('media')!= -1)	{ varPage7 = 'active' }
if 	(self.location.href.indexOf('links.asp')!= -1)	{ varPage8 = 'active'}
if 	(self.location.href.indexOf('contact.asp')!= -1)	{ varPage9 = 'active'}
ready=true;

// end highlight menu


function PopUp(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function ToggleItem(myItem) {
	if (myItem.style.visibility != 'hidden') {
		HideItem(myItem);
	} else {
		ShowItem(myItem);
	}
	return false;
}
function ShowItem(myItem) {
	myItem.style.visibility = 'visible';
	myItem.style.display = '';
}
function HideItem(myItem) {
	myItem.style.visibility = 'hidden';
	myItem.style.display = 'none';
}


