function sendmailto(mail1,mail2) {
	document.location.replace('mailto:'+mail1+'@'+mail2);
}

function checkRouting() {
	f = document.getElementById("formRouting");
	saddr = f.routeStrasse.value + ",+" + f.routeOrt.value + ",+" + f.routeLand.value;
	f.saddr.value = saddr;
	return false();
}

function gotoReference(type) {
	location=$(type+'Dropdown').options[$(type+'Dropdown').selectedIndex].value;
	
}

//Initialisierung SqueezeBox

window.addEvent('domready', function() {
	 
	/**
	 * That CSS selector will find all <a> elements with the
	 * class boxed
	 *
	 * The example loads the options from the rel attribute
	 */
	if( typeof SqueezeBox == "object" ) {
		SqueezeBox.assign($$('a.jsBox'), {
			parse: 'rel'
		});
	}
 
});

