﻿function sehen(){
	hoehe = document.getElementById('login_maske').style.height;
	//alert (hoehe);
	if (hoehe != "100px")
		document.getElementById('login_maske').style.height = "100px";
	else
		document.getElementById('login_maske').style.height = "0px";
}
