var host= window.location.hostname;

function toggleAnswer(thisid){
	if(document.getElementById(thisid.id+'dd').style.display == 'block') {
		document.getElementById(thisid.id+'dd').style.display = 'none';
		document.getElementById(thisid.id).className = 'off';
	}
	else {
		document.getElementById(thisid.id+'dd').style.display = 'block';
		document.getElementById(thisid.id).className = 'on';
	}
}

function goToNHW6P(){
	if(host.indexOf('xs2system') != -1) { window.open('http://www.nhw6p.com') }
	else { document.location.href = "/"; }
}

window.onload=function(){
	if(host.indexOf('xs2system') != -1){ document.getElementById('menu').innerHTML = '';}
}