/* ============================================== ANFAHRTSSKIZZE =============================================== */
var plzurl, PLZwin;
function callPLZ(plzform)
{
	plzurl = "http://maps.google.de/maps?f=d&saddr=" + plzform.PLZ.value + "&daddr=Bahnhofstr.+6,+72532+Gomadingen&hl=de&mra=ls&sll=37.370157,-95.712891&sspn=36.462978,78.75&ie=UTF8&z=12";
	PLZwin = window.open(plzurl,'PLZ_win','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,resizable=1,left=50,top=50,width=750,height=550');
}
/* ===================================================== POPUPS =============================================== */
function anzeigen(x)
 {
  var MSNR = "m"+x;
  if(document.getElementById)
   document.getElementById(MSNR).style.display = "block";
 }
function zumachen(y)
 {
  var MSNR = "m"+y;
   if(document.getElementById)
    document.getElementById(MSNR).style.display = "none";
 }
/* ============================================== WARNUNGSFENSTER =============================================== */
function warn_data()
{
	msg = unescape('Hier kann ein Datenbankbackup erzeugt werden!\nVorgang forsetzen?');
  return confirm(msg);
}
function warn_delete()
{
	msg = unescape('Daten werden ohne weitere Abfrage gel%F6scht!\nVorgang forsetzen?');
  return confirm(msg);
}
/* ==============================================  SCROLL MENU =============================================== */
var name = "#mobile_navi";
var Scrollduration=800;
var menuYloc = null; //Not Change this
var ABSTAND = 220; // 220
$(document).ready(function(){
	menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")))
	$(window).scroll(function ()
	{ 
		offset = menuYloc+$(document).scrollTop()+"px";
		offsetNR = menuYloc+$(document).scrollTop();
		if(offsetNR>ABSTAND)
		{
			offset = menuYloc+$(document).scrollTop()-ABSTAND+"px";
		}
		$(name).animate({top:offset},{duration:Scrollduration,queue:false});
	});
});


