// JavaScript Document
function li(id,status){
var l = document.getElementById(id);
if(status==1){
l.style.borderLeftColor = "#CCCCCC";
l.style.borderBottomColor = "#CCCCCC";
}
else if (status==0){
l.style.borderLeftColor = "#FFFFFF";
l.style.borderBottomColor = "#FFFFFF";
}
}
	   
function pop_up(A, Breite, Hoehe) {
window.open(A,"","width="+Breite+", height="+Hoehe+", scrollbars=no");
}   
