function oeffneFenster(url,width,height) {
	splashWin = window.open("",'x','width='+width+',height='+height+',fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');

	splashWin.location=url;
	
	splashWin.blur();
	splashWin.focus();
}

function oeffneImageFenster(url,width,height) {

	var newWidth = width + 37;
	var newHeight = height + 37;

	splashWin = window.open("",'x','width='+newWidth+',height='+newHeight+',fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');

	splashWin.location=url;
	
	splashWin.blur();
	splashWin.focus();
}	
	
function frageLoeschen(text) {
	var str;
	var conf;
	
	str = text;
	
	conf = confirm(text);
	
	if(conf) {
		return true;
	} else {
		return false;
	}
}

function check_empty(text) {
  return (text.length > 0); // gibt false zurück wenn leehr
}

function bearbeiten(){
	document.getElementById('titelb').style.display="block";
}


function mouseIn(id)
{	
	document.getElementById(id).style.color="#e8ac00";
}

function mouseOut(id)
{
	document.getElementById(id).style.color="#142d4c";
}

function showPic(id) {
	document.getElementById(id).style.height="60px";
	
	document.getElementById(id + "_img").style.width = "50px";
	document.getElementById(id + "_img").style.height = "50px";	
}
function hidePic(id) {
	document.getElementById(id).style.height="35px";
	
	document.getElementById(id + "_img").style.width = "0px";
	document.getElementById(id + "_img").style.height = "0px";	
}

