// JavaScript Document

function toggler(targetId){
  if (document.getElementById){
  		target = document.getElementById(targetId);
  			if (target.style.display == "none"){
  				target.style.display = "";
				target.parentNode.className = "listShow";
  			} else {
  				target.style.display = "none";
				target.parentNode.className = "listHide";
  			}
  	}
}

function toggleMenu(targetId){
  if (document.getElementById){
  		target = document.getElementById(targetId);
  			if (target.style.display == "none"){
  				target.style.display = "";
  			} else {
  				target.style.display = "none";
  			}
  	}
}

function popit(w,h,url){
	var leftPos=(screen.width-w)/2;
	var topPos=(screen.height-h)/2;
	var newWindow=window.open(url,'newWindow','width='+w+',height='+h+',left='+leftPos+',top='+topPos+',scrollbars=yes,statusbar=no,toolbar=no');
}