function pageopen(seite, breite, hoehe) {
window.open(seite,'neues','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+breite+',height='+hoehe+'');
}

function showakdis(container){

  if(document.getElementById(container).style.visibility == "hidden"){
             document.getElementById(container).style.visibility = "visible";
             document.getElementById(container).style.display = "block";
  }else{
             document.getElementById(container).style.visibility = "hidden";
             document.getElementById(container).style.display = "none";
  }

}


function chnr(nr, land, id, hinweistext){
var text = "";

	if(land == "ch" )
	{
		var nr_cmnt = nr + "<br /><span style='font-size:xx-small;font-weight:normal'>Geben Sie die letzten 3 Ziffern<br />im Telefon-Menu ein.</span>";
		document.getElementById("phonenr"+id).innerHTML = nr_cmnt; 	
	}
	else
	{
  	document.getElementById("phonenr"+id).innerHTML = nr;
	}

if(land == "de"){
  text = hinweistext;
}else if(land == "ch"){
  text = hinweistext;
}else{
  text = hinweistext;
}

document.getElementById("phonehin"+id).innerHTML = text;
}

function chnr_telefonpay(nr, land, hinweistext){
var text = "";
document.getElementById("phonenr").innerHTML = nr;

if(land == "de"){
  text = hinweistext;
}else if(land == "ch"){
  text = hinweistext;
}else{
  text = hinweistext;
}

document.getElementById("phonehin").innerHTML = text;

}


function switchCon(containerAN, containerOFF){

             document.getElementById(containerAN).style.visibility = "visible";
             document.getElementById(containerAN).style.display = "block";
             document.getElementById(containerOFF).style.visibility = "hidden";
             document.getElementById(containerOFF).style.display = "none";


  }
  
function closeInfoBox(){
             document.getElementById('infobox').style.visibility = "hidden";
             document.getElementById('infobox').style.display = "none";
}

function keeponline(){
		makeAjax('keeponline.php', 'keeponline');
		keeponlineAlive();
}



function keeponlineAlive(){
 window.setTimeout("keeponline()", 120000);
}

 window.setTimeout("keeponline()", 120000);
 
