<!--
/* Copyright (c) by W.Scheidl KEG */
/* http://www.wsedv.at */
var startPOPUPid;
var startPOPUPoverid;

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 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 check_kontakt()
{
 if (document.kontakt_form.name.value.replace(/ /g,"")=="")
 {
  alert("Bitte geben Sie Ihren Namen ein.");
  return false;
 }

 if (document.kontakt_form.telefon.value.replace(/ /g,"")=="" && document.kontakt_form.email.value.replace(/ /g,"")=="")
 {
  alert("Bitte geben Sie Ihre Telefonnummer oder Ihre eMailadresse ein.");
  return false;
 }

 document.kontakt_form.checkstatus.value="checked";
 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 showMenu(id) {
 document.getElementById("div_bigmenu_"+id).style.visibility = "visible";
}

function hideMenu(id) {
 document.getElementById("div_bigmenu_"+id).style.visibility = "hidden";
}

function donothing() {
 // nothing todo
}

//-->