function goToWebsite() {
	contactForm = document.forms[0].selectwebsites;
	destination = contactForm.options[contactForm.selectedIndex].value;
	if (destination) location.href = destination;
}

function goToContact() {
	contactForm = document.forms[0].selectcontact;
	destination = contactForm.options[contactForm.selectedIndex].value;
	if (destination) location.href = destination;
}


function openWindow (url, title, stageWidth, stageHeight) {
 	fenster = window.open(url, title, "width="+stageWidth+", height="+ stageHeight + ",resizable=0","statusbar=false");
}