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/shouted.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('<span style="color: #FFFFFF">klicke auf das Bild um das Fenster zu schließen</span>');
  win.document.write('</div>');
  win.document.write('</body></html>');
  win.document.close();
}

function ViewChat(ifile, ix, iy)
{
  window.open(""+ifile+"", "", "width="+ix+",height="+iy+", menubar=yes,toolbar=yes");
}

function ViewCode(ipic)
{
  window.open("showcode.php?pic="+ipic+"", "", "width=600,height=100, menubar=no,toolbar=no");
}

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 displayjob(id)
{
  if (document.getElementById("Job_" + id).style.display == 'none')
  {
	document.getElementById("Job_" + id).style.display = "";
  } else {
	document.getElementById("Job_" + id).style.display = "none";
  }
}

function select_switch(status, theform)
{
  for (i=0; i<theform.length; i++) {
    if(theform.elements[i].name=="mark[]") theform.elements[i].checked = status;
  }
}

function showDropDown() {
  document.getElementById("InputTR").style.display = "none";
  document.getElementById("DropDownTR").style.display = "";
}

function showInput() {
  document.getElementById("InputTR").style.display = "";
  document.getElementById("DropDownTR").style.display = "none";
}