function avatarBild(img) {
   	window.open('/avatarassistent/avatar1.php?img='+img,'avatarimg','width=550,height=500,status=no,menubar=no,toolbar=no,resizable=no,scrollbars=no');
}
   
function deleteBild(img) {
   	window.open('/op24_bilddelete_popup.php?img='+img,'delimg','width=350,height=220,status=no,menubar=no,toolbar=no,resizable=no,scrollbars=no');
}
  
function selectKommTag(day) {
   	location.href = '/kommentare/1/'+day+'/';
}
   
function showNewsImage(img,img_w,img_h) {
   
    var w = img_w + 20;
    var h = img_h + 40;
    
    window.open('/op24_shownewsimage_popup.php?img='+img+'&img_h='+img_h+'&img_w='+img_w,'newsimage','width='+w+',height='+h+',status=no,menubar=no,toolbar=no,resizable=no,scrollbars=no');
}

var tempText;

function charsLeft() {

    var strLen = document.forms['senden'].nachricht.value.length;

    if(strLen <= 160) {
       var charsLeft = 160 - strLen;
       tempText = document.forms['senden'].nachricht.value;
    } else {
       var charsLeft = 0;
       document.forms['senden'].nachricht.value = tempText;
    }
    document.getElementById('anzahl_zeichen').innerHTML = charsLeft;
}

function reloadcenter() {
	iframe = document.getElementById('center_iframe');
	if (iframe) iframe.src = '/op24_infozeile.php';
}

function initcenter() {
	window.setInterval(reloadcenter, 19000);
}

// new added 
function change_gebiet(seleObj) {
	var gebietid = seleObj.options[seleObj.selectedIndex].value;
	var p = document.getElementById("agree_policy").value;
	location.replace("?gebietid="+gebietid+"&agree_policy="+p);
}