function toggleOn(arg) { 
 var toggleDiv = document.getElementById(arg); 
 toggleDiv.style.display='block'; 
} 

function toggleOff(arg) { 
 var toggleDiv = document.getElementById(arg); 
 toggleDiv.style.display='none'; 
} 

function popWin() {
	newWin = window.open('whoweserve.html', 'theWindow', 'toolbar=0,location=0,directories=0,status=0,menubar=0,resizeable=1,scrollbars=0,width=300,height=480');
	newWin.focus();
}
	
function popWin2() {
	newWin = window.open('gala.html', 'theWindow', 'toolbar=0,location=0,directories=0,status=0,menubar=0,resizeable=0,scrollbars=0,width=760,height=600');
	newWin.focus();
}
	
function popWin3() {
	newWin = window.open('survey.html', 'theWindow', 'toolbar=0,location=0,directories=0,status=0,menubar=0,resizeable=0,scrollbars=0,width=570,height=570');
	newWin.focus();
}
