function setShowHide(id)
{
	d = document.getElementById("showHide" + id);
	
	switch(d.style.display)
	{
		case "none":
			d.style.display = "block";
			break;
		case "block":
			d.style.display = "none";
			break;
	}
}

function newWindow(url, w, h)
{
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	var p = "width="+w+", height="+h+", top="+t+", left="+l+", scrollbars=yes, resizable";
	window.open(url, "", p);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
