function toggle(item) {
	var target;
	target = document.getElementById(item);
	if (target.style.display == "none") {target.style.display = "block";}
	else {target.style.display="none";}
}

function popupWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}