<!--
/* 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 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
}

function check_boerse(myform)
{
 if (myform.name.value=="")
 {
  alert("Bitte geben Sie Ihren Namen ein.");
  return false;
 }

 if (myform.telefon.value=="" || myform.email.value=="")
 {
  alert("Bitte geben Sie Ihre Telefonnummer und Ihre eMailadresse ein.");
  return false;
 }

 if (document.getElementById) {
  document.getElementById("bittewarten").style.visibility="visible";
 }

 return true;

}

//-->
