function popwin(url) {
	newwindow=window.open('content/popups/'+url,'information','height=500,width=600,status=1,resizable=1,scrollbars=1');
	if (window.focus) {newwindow.focus()}
}

// Open/close toggle for a div with the passed id
function openclose(id,image) {
	if (document.getElementById("newsitem-"+id).style.display=="none") {
  	if (image==true) {document.getElementById("img-"+id).src="img/minus.gif";}
  	document.getElementById("newsitem-"+id).style.display="block";
	} else {
  	if (image==true) {document.getElementById("img-"+id).src="img/plus.gif";}
  	document.getElementById("newsitem-"+id).style.display="none";
	}
}