function recreate_site($url1,$url2)
  {
   var $pref="";
   if ($url1=="")
      {parent.frames[2].location.href = $pref+$url2;}
   else
      {parent.frames[0].location.href = $pref+$url1;
       parent.frames[2].location.href = $pref+$url2;}
  }

function high_item($item,$type)
  {
   $item = $item.id;
   if ($type=="1")
      {document.all[$item].style.color = "#000000";}
   else if ($type=="2")
      {document.all[$item].style.color = "#C0C0C0";}
   else if ($type=="3")
      {document.all[$item].style.color = "#000000";}
  }

function down_item($item,$type)
  {
   $item = $item.id;
   if ($type=="1")
      {document.all[$item].style.color = "#0000BF";}
    else if ($type=="2")
      {document.all[$item].style.color = "#ffffff";}
   else if ($type=="3")
      {document.all[$item].style.color = "#0099cc";}
  }

function ViewImage(bildurl,b,h,bildtitel)
{
var eigenschaft,sbreite,shoehe,fenster,b,h;

// stellt die Bildschirmabmessungen fest
var ns6 = (!document.all && document.getElementById);
var ie4 = (document.all);
var ns4 = (document.layers);

if(ns6||ns4) {
sbreite = innerWidth;
shoehe = innerHeight;
}
else if(ie4) {
sbreite = document.body.clientWidth;
shoehe = document.body.clientHeight;
}

x = (sbreite-b)/2;
y = (shoehe-h)/2;

eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no";

fenster=window.open("","",eigenschaften);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head>');
  document.write("<script type='text/javascript' language='JavaScript'>");
  document.write("function click() { window.close(); } ");  // bei click  schliessen
  document.write("document.onmousedown=click ");
  document.write("</script>");
  document.write('<title>'+ bildtitel +'</title></head>');
  document.write('<body onblur="window.close()" '); // bei Focusverlust schliessen
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
  document.write('<center>');
  document.write('<img src="'+ bildurl +'"border="0">');
  document.write('</center>');
  document.write('</body></html>');
  fenster.document.close();
}
}
function Fenster(URL)
	{fenster1=window.open(URL,'Infofenster','height=660,width=440')}
