function pop_up(url,name,other){
window.open(url,name,other);
}

function DoIt(tmp)
 {
          var i=tmp;
    document.forms[i].buSubmit.disabled = true;
        document.forms[i].buSubmit.value = "Lade. Bitte warten...";
    document.forms[i].submit();
 }

function switch_cview (id)
{
	if (document.getElementById("cview_" + id).style.display == 'none')
	{
		document.getElementById("cview_img_" + id).src = "/img/minus.gif";
		document.getElementById("cview_" + id).style.display = "";
	}
	else
	{
		document.getElementById("cview_img_" + id).src = "/img/plus.gif";
		document.getElementById("cview_" + id).style.display = "none";
	}
}
