<!--

function ShowOrNot(div)
{
	status = document.getElementById(div).style.display;
	if(status != "none") document.getElementById(div).style.display = "none";
	else document.getElementById(div).style.display = "block";
}

function noSpam(user, domain) { 
	locationstring = "mailto:" + user + "@" + domain; 
	window.location = locationstring; 
}

function Popup(URL, WIDTH, HEIGHT, TOOLBAR, SCROLLBARS, LOCATION, STATUSBAR, MENUBAR, RESIZABLE)
{
	PopupWindow = window.open(URL, 'Popup', 'toolbar=' + TOOLBAR + ', scrollbars=' + SCROLLBARS + ', location=' + LOCATION + ', statusbar=' + STATUSBAR + ', menubar=' + MENUBAR + ', resizable=' + RESIZABLE + ',width=' + WIDTH + ',height=' + HEIGHT);
}

//-->
