function gehezu(form) 
{
	if (form.choice.selectedIndex!=0) 
	{
		document.location=form.choice.options[form.choice.selectedIndex].value;
	}
}

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


function printme()
{
	window.print();
}

function checkLength(announcement)
{
	if(document.getElementById('chosenplz').value.length < 3)
	{
		alert(announcement);
		return false;
	}
	return true;
}