<!--
/* Copyright (c) by W.Scheidl KEG */
/* http://www.wsedv.at */
var startPOPUPid;
var startPOPUPplanid;
var startPOPUPinfoid;
var startPOPUPoverid;
var startPOPUPgeoid;

function startPOPUP(myfile) {
	startPOPUPid=window.open(myfile,"popup","menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes,left=1,top=10,width=650,height=450");
	startPOPUPid.focus();
}

function startPOPUPplan(myfile) {
	startPOPUPplanid=window.open(myfile,"plan","menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes,left=1,top=10,width=640,height=520");
	startPOPUPplanid.focus();
}

function startPOPUPoverview(myfile) {
	startPOPUPoverid=window.open(myfile,"popup","menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes,left=650,top=10,width=374,height=550");
	startPOPUPoverid.focus();
}

function selectMenu(myNR, myID) {
	for (i=1; i<=40; i++) {
		if (document.getElementById("pointer"+i)) {
			document.getElementById("pointer"+i).src="images/pointer0.gif";
		}
	}
	if (document.getElementById("pointer"+myNR)) {
		document.getElementById("pointer"+myNR).src="images/pointer1.gif";
	}
}

function check_kontakt()
{
 if (document.kontakt_form.name.value=="")
 {
  alert("Bitte geben Sie Ihren Namen ein.");
  return false;
 }

 if (document.kontakt_form.telefon.value=="" && document.kontakt_form.email.value=="")
 {
  alert("Bitte geben Sie Ihre Telefonnummer oder Ihre eMailadresse ein.");
  return false;
 }

 return true;

}

function printthispage() {
 window.print();
}

function show_hide_element(id) {
 document.getElementById(id).style.display == "none" ? document.getElementById(id).style.display = "inline" : document.getElementById(id).style.display = "none";
}

function donothing() {
 // nothing todo
}

//-->
