// JavaScript Document

function ShowBeschreibung(myID,bild)
 {
	document.all['mit_' + myID].style.display = "inline";
  document.all['ohne_' + myID].style.display = "none";
	//document.all['preis_' + myID].style.display = "none";
	//document.all['haendler_' + myID].style.display = "none";
	if (bild == 1) {
		document.all['bild_' + myID].src = document.all['link_' + myID].href	
	}
 }
function HideBeschreibung(myID)
 {
  document.all['mit_' + myID].style.display = "none";
  document.all['ohne_' + myID].style.display = "inline";
	//document.all['preis_' + myID].style.display = "inline";
	//document.all['haendler_' + myID].style.display = "inline";
 }

function ow(url)
{
var eigenschaft,sbreite,shoehe,fenster,b,h;
var ns6 = (!document.all && document.getElementById);
var ie4 = (document.all);
var ns4 = (document.layers);
var b = 550;
var h = 450;
if(ns6||ns4) {
LeftPosition = (screen.width) ? (screen.width-b)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
}
else if(ie4) {
LeftPosition = (screen.width) ? (screen.width-b)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
}
eigenschaften="left="+LeftPosition+",top="+TopPosition+",width="+b+",height="+h+",menubar=no,toolbar=no,scrollbars=yes";
fenster=window.open(url,'Fenster',eigenschaften);
fenster.focus();
}


function hideColumn (colIndex) {
  var table = document.all ? document.all.aTable :
              document.getElementById('aTable');
 //for (var r = 0; r < table.rows.length; r++)
    table.rows[colIndex].cells[1].style.display = 'none';
		table.rows[colIndex].cells[2].style.display = 'none';
		table.rows[colIndex].cells[2].style.display = 'none';
}

function showColumn (colIndex) {
  var table = document.all ? document.all.aTable :
              document.getElementById('aTable');
  for (var r = 0; r < table.rows.length; r++)
    table.rows[r].cells[colIndex].style.display = '';
}