function getElement(aID)  {
	var rv = (document.getElementById) ? document.getElementById(aID) : document.all[aID];
	return rv;
	}
function openWin(url,width,height,scroll)		{
	groesse="toolbar=no,location=no,directories=no,scrollbars="+scroll+",status=no,menubar=no,resizable=yes,width="+width+",height="+height;
	window.open(url,"_new",groesse);
	}
function toggleBlock(Blname)	{
	BL = getElement(Blname);
	if(BL.style.display == "block") BL.style.display = "none";
	else BL.style.display = "block";
	return true;
	}
	
function Commit(url,Comtext)	{
	if(confirm(Comtext) == true)	{
		document.location.href=url;
		}
	else	{
		}
	return true;
	}

