	function webmaillogin()
	{
		with (document.form)
		{
			switch (domain.value) {
				case 'punktesammler.ch':
					var action = "http://webmail.punktesammler.ch/imp/redirect.php";
					submit();
				break;
				case 'decathlon.ch':
					var action = "http://webmail.decathlon.ch/imp/redirect.php";
					submit();
				break;
				case 'heptathlon.ch':
					var action = "http://webmail.heptathlon.ch/imp/redirect.php";
					submit();
				break;
				default: //do nothing
			}
		}
	}




function openCentered(theURL,winName,winWidth,winHeight,features) {
 var w = (screen.width - winWidth)/2;
 var h = (screen.height - winHeight)/2 - 30;
 features = features+',width='+winWidth+',height='+winHeight+',top='+h+',left='+w;
 window.open(theURL,winName,features);
}