// Modul Lageplaner
function lageplaner(){
	var map_window = window.open("","","width=420,height=350,resizable=yes");
	var map_content = "<html><head><title>Lageplan Tai Chi Schule<\/title><\/head>";
	map_content += "<div style='text-align:right;margin: 0 0 5px 0; padding: 0;'><a href='javascript:void(0)' onclick='javascript:window.close()'><img style='border:0;' src='..\/img\/layout\/windowclose.jpg' alt='Fenster schließen' width='111' height='18' \/><\/a><\/div>";
	map_content += "<body style='text-align:center'><img src='..\/img\/lageplan.png' alt='Lageplan Tai Chi Schule' width='400' height='300' \/>";
	map_content += "<\/body><\/html>";
	
	map_window.document.write(map_content);
	map_window.document.close();
	map_window.focus();
}
