function vizDiv(objectID,what2do)
	{
	browserVersion = parseInt(navigator.appVersion);
	if ((navigator.appName.indexOf('Netscape') != -1) && (browserVersion == 4))
		{
		var parseChar = '_';
		destination = 'browse.php?cid=' + (objectID.substring(objectID.indexOf("_") + 1, objectID.length)) + '&p=1';
		self.location = destination;
		}
	else
		{
		myElement = document.getElementById(objectID);
		if (what2do == 0)
			{
			myElement.style.display = 'none';
			}
		else
			{
			if (what2do == 1)
				{
				myElement.style.display = 'block';
				}
			else
				{
				if (myElement.style.display == 'block')
					{
					myElement.style.display = 'none';
					if (objectID.charAt(0) == '_')
						{
						imageID = "i" + objectID;
						}
					}
				else
					{
					myElement.style.display = 'block';
					if (objectID.charAt(0) == '_')
						{
						imageID = "i" + objectID;
						}
					}
				}
			}
		}
	}

function openWin(mypage, myname, features, w, h)
	{
	if (w == 'winmax')
		{
		w = screen.width
		}
	if (h == 'winmax')
		{
		h = screen.height
		}
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = features+',height='+h+',width='+w+',top='+wint+',left='+winl;
	win = window.open(mypage, myname, winprops);
	}
