/*	File:		main.js
 *	Author:		Matthias Friedrich
 *	Date:		21-11-2003
 */
 
function toggle(
	n)
{
	if (n != null)
	{	if (n.style.display == "block")
			n.style.display = "none";
			
		else
			n.style.display = "block";
			
	}
}

function popup(
	target)
{	
	target = "http://www.equaserver.de/popup.asp?target=" + target
	var m_wnd = window.open(target, null, "resizable=yes, toolbar=no, width=100, height=100");

		
}

function popupex(
	target, width, height)
{	// 642, 576
	var m_wnd = window.open(target, null, "resizable=yes, toolbar=no, width=" + width + ", height=" + height);
}
