//hide email addresses
emailE='edsheeran.com'
emailE=('info' + '@' + emailE)

//highlight menu
var ready;
varPage1 = ""
varPage2 = ""
varPage3 = ""
varPage4 = ""
varPage5 = ""
varPage6 = ""

if 	(self.location.href.indexOf('prod')!= -1)	{ varPage1 = 'active' }
if 	(self.location.href.indexOf('resources')!= -1)	{ varPage2 = 'active' }
if 	(self.location.href.indexOf('mailinglist')!= -1)	{ varPage3 = 'active' }
if 	(self.location.href.indexOf('links')!= -1)	{ varPage4 = 'active' }
if 	(self.location.href.indexOf('news')!= -1)	{ varPage5 = 'active' }
if 	(self.location.href.indexOf('contact.asp')!= -1)	{ varPage6 = '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';
}

