function jump() {
 if(document.jumpform.sitemap.options[document.jumpform.sitemap.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('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n');
  win.document.write("<html>\n<head>\n<title>"+ititle+"</title>\n");
  win.document.write("  <link rel='stylesheet' type='text/css' href='./css/ocs.css' />\n");
  win.document.write("</head>\n\n");
  win.document.write("<body style='background-color: #FFFFFF; padding: 0px; margin: 0px'>\n\n");
  win.document.write('<div align="center">\n<br />\n');
  win.document.write('<a href="#" onclick="self.close()"><img src='+ifile+' border="0" alt=""></a><br />\n');
  win.document.write('<br />\n');
  win.document.write('<span style=\"color: #000000\">klicken Sie auf das Bild um das Fenster zu schließen.</span>\n');
  win.document.write('</div>\n\n');
  win.document.write('</body>\n</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 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";
}

function select_switch(status, theform)
{
  for (i=0; i<theform.length; i++) {
    if(theform.elements[i].name=="mark[]") theform.elements[i].checked = status;    
  }
}

function flipfaq(id, max)
{
  for(i=1; i<=max; i++) {
	if(i < 10) { i = "0"+i; } else { i = i; }
    document.getElementById("faq_"+i).style.display = "none";
  }
  
  if(id < 10) { id = "0"+id; } else { id = id; }
  document.getElementById("faq_"+id).style.display = "";
}

/* BESTELLUNGSSYSTEM */
function changeProdukt(produkt, mainprodukt) {
  window.location = "index.php?module=bestellen&mainprodukt="+mainprodukt+"&produkt="+produkt;
}

