function jump() {
 if(document.jumpform.fach.options[document.jumpform.fach.selectedIndex].value != -1) document.jumpform.submit();
}

function ViewImage(ifile, ix, iy, ititle)
{
  var win;
  var sWidth;
  var sHeight;
  win = window.open("", "imageviewer","width="+ix+",height="+iy+", menubar=no,toolbar=no");

  win.document.open();
  win.document.write("<html><head><title>"+ititle+"</title>");
  win.document.write("<link rel='stylesheet' type='text/css' href='./css/ez.css' />");
  win.document.write("</head>");
  win.document.write("<body style='padding: 0px; margin: 0px'>");
  win.document.write('<div align="center"><br />');
  win.document.write('<a href="#" onclick="self.close()"><img src='+ifile+' border="0" alt=""></a><br />');
  win.document.write('<br />');
  win.document.write('klicke auf das Bild um das Fenster zu schließen');
  win.document.write('</div>');
  win.document.write('</body></html>');
  win.document.close();
}

function PreviewCountry (isocode)
{
  document.getElementById('CountryImg').src = './flags/' + isocode + '.gif';
}

function AdminPreviewCountry (isocode)
{
  document.getElementById('CountryImg').src = './../flags/' + isocode + '.gif';
}


function PreviewIcon (isocode)
{
  document.getElementById('IconImg').src = 'images/icons/' + isocode + '';
}

function displaynews(id)
{
  if (document.getElementById("News_" + id).style.display == 'none')
  {
	document.getElementById("News_" + id).style.display = "";
    document.getElementById("NewsImg_" + id).src = "images/collapse.gif";
 	document.getElementById("NewsImg_" + id).alt = "-";
	document.getElementById("NewsImg_" + id).title = "-";
  } else {
	document.getElementById("News_" + id).style.display = "none";
    document.getElementById("NewsImg_" + id).src = "images/expand.gif";
	document.getElementById("NewsImg_" + id).alt = "+";
	document.getElementById("NewsImg_" + id).alt = "+";
  }
}

function toggle_navi(id)
{
  ablauf = new Date();
  cookieTime = ablauf.getTime()+( 60 * 60 * 1000);
  ablauf.setTime(cookieTime);
  expire = "expires=" + ablauf.toGMTString();

  if (document.getElementById("Navi_" + id).style.display == "none")
  {
    document.getElementById("Navi_" + id).style.display = "";
    document.getElementById("NaviImg_" + id).src = "./images/cos_dot_collapse.jpg";
    document.getElementById("NaviImg_" + id).alt = "-";
    document.getElementById("NaviImg_" + id).title = "-";
    document.cookie = "Navi_" + id + "=1;path=/;expires=0";
  } else {
    document.getElementById("Navi_" + id).style.display = "none";
    document.getElementById("NaviImg_" + id).src = "./images/cos_dot_expand.jpg";
    document.getElementById("NaviImg_" + id).alt = "+";
    document.getElementById("NaviImg_" + id).title = "+";
    document.cookie = "Navi_" + id + "=0;path=/;expires=0";
  }
}

function auswahl(area) {
	if (area == "") {
   		document.forms[0].reset();
  		document.forms[0].elements[0].blur();
   		return;
	}else {
		location.href = "/index.php?area=" + area;
		document.forms[0].reset();
		document.forms[0].elements[0].blur();
	}
}

