
//  CLIENT_SIDE SNIFFER CODE

// convert all characters to lowercase to simplify testing 
var agt=navigator.userAgent.toLowerCase(); 

//BROWSER VERSION
// Note: On IE5, these return 4, so use is_ie5up to detect IE5. 
var is_major = parseInt(navigator.appVersion); 
var is_minor = parseFloat(navigator.appVersion); 

//BROWSER TYPE 
var is_nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1) 
            && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1) 
            && (agt.indexOf('webtv')==-1));
var is_nav4up = (is_nav && (is_major >= 4)); 
var is_nav6 = (document.getElementById && !document.all); 
var is_ie   = (agt.indexOf("msie") != -1); 
var is_ie3  = (is_ie && (is_major < 4)); 
var is_ie4  = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")==-1) );
var is_ie4up  = (is_ie  && (is_major >= 4));
var is_ie5  = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")!=-1) );  
var is_ie5up  = (is_ie  && !is_ie3 && !is_ie4);  
var is_dom = (document.getElementById);

//PLATFORM 
var is_win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
var is_mac    = (agt.indexOf("mac")!=-1);
var is_sun   = (agt.indexOf("sunos")!=-1);
var is_irix  = (agt.indexOf("irix") !=-1);    // SGI
var is_hpux  = (agt.indexOf("hp-ux")!=-1);
var is_aix   = (agt.indexOf("aix") !=-1);      // IBM
var is_linux = (agt.indexOf("inux")!=-1);
var is_sco   = (agt.indexOf("sco")!=-1) || (agt.indexOf("unix_sv")!=-1);
var is_unixware = (agt.indexOf("unix_system_v")!=-1); 
var is_mpras    = (agt.indexOf("ncr")!=-1); 
var is_reliant  = (agt.indexOf("reliantunix")!=-1);
var is_dec   = ((agt.indexOf("dec")!=-1) || (agt.indexOf("osf1")!=-1) || 
       (agt.indexOf("dec_alpha")!=-1) || (agt.indexOf("alphaserver")!=-1) || 
       (agt.indexOf("ultrix")!=-1) || (agt.indexOf("alphastation")!=-1)); 
var is_sinix = (agt.indexOf("sinix")!=-1);
var is_freebsd = (agt.indexOf("freebsd")!=-1);
var is_bsd = (agt.indexOf("bsd")!=-1);
var is_unix  = ((agt.indexOf("x11")!=-1) || is_sun || is_irix || is_hpux || 
             is_sco ||is_unixware || is_mpras || is_reliant || 
             is_dec || is_sinix || is_aix || is_linux || is_bsd || is_freebsd);

             
             
//preload images for Header Navigation
var preloadArray = new Array();
var preloadArrayLength = 0;

function preloadImages() {
	if (document.images) {
		var imgName = preloadImages.arguments;
		for (var i=0; i<imgName.length; i++) {
	    	preloadArray[preloadArrayLength] = new Image;
		    preloadArray[preloadArrayLength].src = pfad + imgName[i] + ".gif";
			preloadArrayLength++;
		}
	}
}

//preload bierkreiszeichen-navi-images
var preload2Array = new Array();
var preload2ArrayLength = 0;

function preload2Images() {
	if (document.images) {
		var imgName = preload2Images.arguments;
		for (var i=0; i<imgName.length; i++) {
	    	preload2Array[preload2ArrayLength] = new Image;
		    preload2Array[preload2ArrayLength].src = pfad + imgName[i] + ".gif";
			preload2ArrayLength++;
		}
	}
}

if (document.images) {
pfad='/navi_pics/';
preloadImages("onav_home_on","onav_suche_on","onav_sitemap_on","onav_kontakt_on","onav_hilfe_on","onav_pweb_on","ueberuns_on","aktuelles_on","produkte_on","onlineservice_on","wisspool_on","referenzen_on","sales_on","myunitherm_on");
}

// rollover	f&uuml;r navi
	
function imgOn(imgName){
        if (document.images) {
                document.images[imgName].src = "/navi_pics/" + imgName+ "_on.gif";
        }
}

function imgOff(imgName){
        if (document.images) {
                document.images[imgName].src = "/navi_pics/" + imgName+ "_off.gif";
        }
}

// rollover		

function genLayerPic(imgNam,layerName){
	pic=(is_dom)? eval("document.images['"+imgNam+"']"):eval("document."+layerName+".document.images['"+imgNam+"']");
    return pic;
}

function layOn(imgNam,layerName)
{
    genLayerPic(imgNam,layerName);
    pic.src="/navi_pics/"+ imgNam + "_on.gif" ;
}

function layOff(imgNam,layerName)
{
   genLayerPic(imgNam,layerName);
   pic.src="/navi_pics/"+ imgNam + "_off.gif" ;
}

 
// Funktion: Ermittelt die Position eines Bildes im imgArray anhand des Namens und liefert dessen Position zurueck.
function getPos(name)
{
  var retValue = -1;
  for (var p = 0; p < preload2Array.length; p++)
  {
    if (preload2Array[p].name == name) retValue = p;
  }
  return (retValue);
}
  
 

function handleResize() {
   if (((initWidth != window.innerWidth) || (initHeight != window.innerHeight)) && (typeof disableReload == "undefined")) {
     location.reload();
   }
   return false;
}

//initialisierung sub-seiten mit stammgast-layer:
function initPage()
  {
    layerPos();
    layerPosFDiv();
    
    if (is_nav)
      {
        window.captureEvents(Event.RESIZE);
        window.onresize = handleResize;
        initWidth = window.innerWidth;
        initHeight = window.innerHeight;
    }
    else
      {
        window.onresize = layerPos;
    }
    menuPos = 0;
    bildPos = 0;

}

// Positionierung der Layers fuer OnlineServices/Systemaufbau
function systemLayers()  {

   if(is_nav6)
   {
   obj=createObj('mama');
   leftBorderX = window.innerWidth;
   leftBorderX = (leftBorderX <= 780) ? 772 : leftBorderX;
   obj.left=leftBorderX-800;
   //show('stammgastDiv'); 
   }
    
   else if (is_nav)
      {
        leftBorderX = document.images["1stPic"].x + 160;
        document.layers["mama"].left = leftBorderX;
     }
     else
      {
        obj = document.all["mama"].style;
        leftBorderX = ((document.body.clientWidth - 772) / 2) + 160;
        leftBorderX = (leftBorderX < 0) ? 0 : leftBorderX;
        
        leftBorderX = (leftBorderX) + "px"; //641
        obj.left = leftBorderX;
    }
}

function initSystemLayers()
  {
    systemLayers();
	
    if (is_nav)
      {
        window.captureEvents(Event.RESIZE);
        window.onresize = handleResize;
        initWidth = window.innerWidth;
        initHeight = window.innerHeight;
    }
    else
      {
        window.onresize = systemLayers;
    }
    menuPos = 0;
    bildPos = 0;

}




//initialisierung sitemap
function initPage2()
  {
    //layerPos();

    
    if (is_nav)
      {
        window.captureEvents(Event.RESIZE);
        window.onresize = handleResize;
        initWidth = window.innerWidth;
        initHeight = window.innerHeight;
    }

    menuPos = 0;
    bildPos = 0;

}

function layerPosFDiv() 
  {
   if(is_nav6)  {
   obj=createObj('fahnenDiv');
   leftBorder = ((window.innerWidth - 772) / 2);
   obj.left=leftBorder+114;
   }
}


//positionierung vom permatex-web-layer auf allen seiten:
function layerPos() 
  {
   if(is_nav6)  {
   obj=createObj('jumpDiv');
   leftBorder = ((window.innerWidth - 772) / 2) + 772;
   obj.left=leftBorder-123;
   }
    
   else if (is_nav)
      {
        leftBorder = document.images["1stPic"].x + 648;
        document.layers["jumpDiv"].left = leftBorder;
        
        /*layer in dem alle fähnchen liegen*/
        leftBorder2 = document.images["1stPic"].x + 115;
        document.layers["fahnenDiv"].left = leftBorder2;
     }
     else
      {
        obj = document.all["jumpDiv"].style;
        leftBorder = ((document.body.clientWidth - 772) / 2) + 1;
        leftBorder = (leftBorder < 0) ? 0 : leftBorder;
        
        leftBorder = (leftBorder + 647) + "px"; //641
        obj.left = leftBorder;
        
        /*layer in dem alle fähnchen liegen*/
        obj2 = document.all["fahnenDiv"].style;
        leftBorder2 = ((document.body.clientWidth - 772) / 2) + 1;
        leftBorder2 = (leftBorder2 < 0) ? 0 : leftBorder2;
        
        leftBorder2 = (leftBorder2 + 114) + "px";
        obj2.left = leftBorder2;
        /*
        topBorder = ((document.body.clientHeight - 380)/2) +1;
        topBorder = (topBorder < 0) ? 0 : topBorder;
        topBorder = (topBorder + 27) + "px";  
        document.all["jumpDiv"].style.top = topBorder; */
    }
}


//initialisierung fuer alle layers
function init() 
{
  if((is_nav) && (!is_nav6)) 
  {
	  genObj="document.layers";
	  genStyle="";
  }
  else
  {
	  genObj="document.all";
	  genStyle=".style";
  }
}
 
init();

 
//show and hide layer at OnMouseOver/OnMouseOut 
function createObj(divName) {

  if(is_dom)
  {
	  stand_obj=document.getElementById(divName);
	  obj=stand_obj.style;
  }
  else
  {
      //if(divName == 'fahnenDiv')   obj = document.layers['fahnenDiv'].layers[divName];
      obj=eval(genObj+"['"+divName+"']"+genStyle);
	  // alert(obj);
	
	  if(!is_ie4) {
	  if(obj == undefined)   obj = document.layers['fahnenDiv'].layers[divName];
	  }
      
  }  
  return obj; 
}



function createObjSys(divName) {

  if(is_dom)
  {
	  stand_obj=document.getElementById(divName);
	  obj=stand_obj.style;
  }
  else
  {
      //if(divName == 'fahnenDiv')   obj = document.layers['fahnenDiv'].layers[divName];
      obj=eval(genObj+"['"+divName+"']"+genStyle);
	  // alert(obj);
	  if(obj == undefined)   obj = document.layers['mama'].layers[divName];
      
  }  
  return obj; 
}


function showSys(divName) 
{
  createObjSys(divName);
  obj.visibility='visible';
}

function hideSys(divName) 
{
  createObjSys(divName);
  obj.visibility='hidden';
} 


function show(divName) 
{
  createObj(divName);
  obj.visibility='visible';
}

function hide(divName) 
{
  createObj(divName);
  obj.visibility='hidden';
} 

function change(divalt, divneu)
{
  show(divneu);
  hide(divalt); 
}

   
//avoid resize problems with Netscape 4
if (is_nav4up) 
{
  origWidth = innerWidth;
  origHeight = innerHeight;
}

function reDo() 
{
  if (innerWidth != origWidth || innerHeight != origHeight) 
  history.go(0);
}

if (is_nav4up) onresize = reDo;

// oeffnet pop up - fenster mit def. hoehe, breite und vorgegebener position, mit scrollbars
function fenster(ort,w,h) {
  win = window.open(ort, 'Neues_Fenster', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width='+w+',height='+h+',screenX=50,screenY=200,left=50,top=200');
}

function getScreen() {
screenH=screen.availHeight;
screenW=screen.availWidth;
}

function meldung(ort,w,h) {
if(top.location==self.location) {
if(is_nav) {
leftPos = screenX;
topPos = screenY;
}
else {
leftPos = 10;
topPos = 10;
}

fen = '';
fen = window.open(ort, 'fen','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+w+',height='+h+',screenX='+leftPos+',screenY='+topPos+',left='+leftPos+',top='+topPos);

setTimeout("fen.close()",20000);
}
}

function partyWin(ort,w,h,name) //ohne scrollbars, sonst wie fenster()
{
  win = window.open(ort, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+w+',height='+h+',screenX=50,screenY=200,left=50,top=200');
}

function zoom(ort,w,h) //ohne scrollbars, sonst wie fenster()
{
  win = window.open(ort,'ZoomBild','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+w+',height='+h+',screenX=50,screenY=200,left=50,top=200');
}

function pop(ort) {
w=780;
getScreen();
	if(screenH > 640) {
	h = screenH-45;
	}
	else {
	h = screenH;
	}
	left = (screenW-w)/2;
  win = window.open(ort,'popWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width='+w+',height='+h+',screenX='+left+',screenY=0,left='+left+',top=0');
}


function waittoclose() {
	setTimeout("self.close()",250);
}


function sitemap2main(page) {
	window.opener.location.href=page;
	waittoclose();
}


function fokus ()  {
   self.focus();
  }



function waehle(w,kid,pid) {
	if (w=='') return; 
	else location.href="index.php?kid="+kid+"&pid="+pid+"&prid="+w+"&step=2";
}



function getHeight() {
	if(is_nav) {
	hoehe = window.innerHeight;
	hoehe2 = hoehe-201;
	}
	else {
	hoehe = document.body.clientHeight;
	hoehe2 = hoehe-203;
	}
}


function spacerHeight() {
	getHeight();
	document.write('<img src="/shared_img/leer.gif" width="2" height="'+hoehe2+'" border="0" />')
}

function spacerHeightIndex() {
	getHeight();
	document.write('<img src="/shared_img/leer.gif" width="1" height="'+hoehe2+'" border="0" />')
}

function spacerHeightIndexToo() {
	getHeight();
	document.write('<img src="/shared_img/leer.gif" width="17" height="'+hoehe2+'" border="0" />')
}

function tableHeight() {
	getHeight();
	document.write('<img src="/shared_img/leer.gif" width="1" height="'+hoehe+'" border="0" />')
}


function changePic(imgName,imgSource) {if (document.images) {document.images[imgName].src = pfad + imgSource + '.gif';}}


function moveLayer(divName,y) {
  createObjSys(divName);
  obj.top=y;
}


function showSystemStart() {
	setTimeout("showSys('startstahl')",1000);
	setTimeout("showSys('startholz')",1100);
	setTimeout("showSys('startkabel')",1200);
}	
    



function back03Se() {

	hideSys('stahl01010101');
	hideSys('stahl01010102');
	hideSys('stahl01010103');
	hideSys('stahl01010104');

	hideSys('stahl01010201');
	hideSys('stahl01010202');

}

function back03S() {

	hideSys('stahl01010101');
	hideSys('stahl01010102');

	hideSys('stahl01010201');
	hideSys('stahl01010202');

	hideSys('stahl01010301');
	hideSys('stahl01010302');

}


function back03S01() {

	back04S01();
	back04S02();
	back04S03();
	back03S();

	showSys('stahl010101');
	showSys('stahl010102');
	showSys('stahl010103');
	moveLayer('stahl010102',110);
	moveLayer('stahl010103',220);
	hideSys('dummy03S01');
}

function back03S01e() {

//	back04S01e();
//	back04S02e();
	back03Se();

	showSys('stahl010101');
	showSys('stahl010102');
	moveLayer('stahl010102',110);
	hideSys('dummy03S01e');
}

function back04S01() {

	hideSys('stahl0101010101');
	hideSys('stahl0101010102');
	hideSys('stahl0101010103');
	hideSys('stahl0101010104');
	hideSys('stahl0101010201');
	hideSys('stahl0101010202');
	showSys('stahl01010101');
	showSys('stahl01010102');
	moveLayer('stahl01010102',110);
	hideSys('dummy04S01');
}

function back04S01e() {

/*	hideSys('stahl0101010101');
	hideSys('stahl0101010102');
	hideSys('stahl0101010103');
	hideSys('stahl0101010201'); */
	showSys('stahl01010101');
	showSys('stahl01010102');
	showSys('stahl01010103');
	showSys('stahl01010104');
	moveLayer('stahl01010102',110);
	moveLayer('stahl01010103',220);
	moveLayer('stahl01010104',330);
	hideSys('dummy04S01e');
}

function back04S02() {

	hideSys('stahl0101020101');
	hideSys('stahl0101020102');
	hideSys('stahl0101020201');
	hideSys('stahl0101030101');
	hideSys('stahl0101030102');
	showSys('stahl01010201');
	showSys('stahl01010202');
	moveLayer('stahl01010202',110);
	hideSys('dummy04S02');
}

function back04S03() {

	hideSys('stahl0101030101');
	hideSys('stahl0101030102');
	hideSys('stahl0101030201');
	showSys('stahl01010301');
	showSys('stahl01010302');
	moveLayer('stahl01010302',110);
	hideSys('dummy04S03');
}

function back04S02e() {

	showSys('stahl01010201');
	showSys('stahl01010202');
	moveLayer('stahl01010202',110);
	hideSys('dummy04S02e');
}

function back03S02() {

	back04S01();
	back03S();

	showSys('stahl010201');
	showSys('stahl010202');
	showSys('stahl010203');
	moveLayer('stahl010202',110);
	moveLayer('stahl010203',220);
	hideSys('dummy03S02');
}

function back03S02e() {

	back03Se();

	showSys('stahl010201');
	showSys('stahl010202');
	showSys('stahl010203');
	moveLayer('stahl010202',110);
	moveLayer('stahl010203',220);
	hideSys('dummy03S02');
}

function back03K() {

	showSys('kabel010201');
	showSys('kabel010202');
	showSys('kabel010203');
	moveLayer('kabel010202',110);
	moveLayer('kabel010203',220);

}


function back02S() {

	back03S01();
//	back03S02();

	hideSys('stahl010101');
	hideSys('stahl010102');
	hideSys('stahl010103');

//	hideSys('stahl010201');
//	hideSys('stahl010202');
//	hideSys('stahl010203');

//	hideSys('dummy02S');
	
}

function back02Se() {

	back03S01e();
//	back03S02();

	hideSys('stahl010101');
	hideSys('stahl010102');
	hideSys('stahl010103');

//	hideSys('stahl010201');
//	hideSys('stahl010202');
//	hideSys('stahl010203');

//	hideSys('dummy02S');
	
}

function back02K() {

	back03K();

	hideSys('kabel010201');
	hideSys('kabel010202');
	hideSys('kabel010203');
	showSys('kabel0101');
	showSys('kabel0102');
	moveLayer('kabel0102',110);

	hideSys('dummy02K');
	
}

function back01() {

	back02S();
	back02K();

	hideSys('holz0101');
	hideSys('holz0102');

	hideSys('kabel0101');
	hideSys('kabel0102');

	showSys('startstahl');
	showSys('startholz');
	showSys('startkabel');

	moveLayer('startstahl',0);
	moveLayer('startholz',110);
	moveLayer('startkabel',220);
		
	moveLayer('holz0102',110);
	moveLayer('kabel0102',110);

	hideSys('dummy01');
	
}


function back01() {

	back02S();
	back02K();

	hideSys('holz0101');
	hideSys('holz0102');

	hideSys('kabel0101');
	hideSys('kabel0102');

	showSys('startstahl');
	showSys('startholz');
	showSys('startkabel');

	moveLayer('startstahl',0);
	moveLayer('startholz',110);
	moveLayer('startkabel',220);
	
	moveLayer('holz0102',110);
	moveLayer('kabel0102',110);

	hideSys('dummy01');
	
}


function back01e() {

	back02Se();
	back02K();

	hideSys('holz0101');
	hideSys('holz0102');

	hideSys('kabel0101');
	hideSys('kabel0102');

	showSys('startstahl');
	showSys('startholz');
	showSys('startkabel');

	moveLayer('startstahl',0);
	moveLayer('startholz',110);
	moveLayer('startkabel',220);
	
	moveLayer('holz0102',110);
	moveLayer('kabel0102',110);

	hideSys('dummy01');
	
}



function s0101() {
	hideSys('startholz');
	hideSys('startkabel');
	showSys('dummy01');
	showSys('stahl010101');
	showSys('stahl010102');
	showSys('stahl010103');
}



function h0101() {
	showSys('dummy01');
	showSys('holz0101');
	showSys('holz0102');
	hideSys('startstahl');
	hideSys('startkabel');
	moveLayer('startholz',0);
}

function k0101() {
	showSys('dummy01');
	showSys('kabel0101');
	showSys('kabel0102');
	hideSys('startstahl');
	hideSys('startholz');
	moveLayer('startkabel',0);
}

function h0102() {
	hideSys('holz0101');
	moveLayer('holz0102',0);
}


function vh01() {
	moveLayer('startholz',0);
	showSys('startholz');
	showSys('dummy01');
	showSys('holz0101');
	showSys('holz0102');
}

function vk01() {
	moveLayer('startkabel',0);
	showSys('startkabel');
	showSys('dummy01');
	showSys('kabel0101');
	showSys('kabel0102');
}

function vk02() {
	vk01();
	moveLayer('kabel010201',0);
	moveLayer('kabel010202',110);
	moveLayer('kabel010203',220);
	moveLayer('kabel0102',0)
	hideSys('kabel0101')
	showSys('kabel010201');
	showSys('kabel010202');
	showSys('kabel010203');
	showSys('dummy02K');
}

function vs01() {
	showSys('startstahl');
	showSys('dummy01');
	showSys('stahl010103');
	showSys('stahl01010301');
	showSys('stahl01010302');
	moveLayer('stahl010103',0)
	moveLayer('stahl01010301',0)
	moveLayer('stahl01010302',110)
}

function vs0101010101() {
	showSys('startstahl');
	showSys('stahl010101');
	showSys('stahl01010101');
	showSys('stahl0101010101');
	showSys('stahl0101010102');
	showSys('stahl0101010103');
	showSys('stahl0101010104');
	showSys('dummy01');
	showSys('dummy03S01');
	showSys('dummy04S01');
}

function vs0101010201() {
	showSys('startstahl');
	showSys('stahl010101');
	showSys('stahl01010102');
	moveLayer('stahl01010102',0);
	showSys('stahl0101010201');
	showSys('stahl0101010202');
	showSys('dummy01');
	showSys('dummy03S01');
	showSys('dummy04S01');
}

function vs0101020101() {
	showSys('startstahl');
	showSys('stahl010102');
	moveLayer('stahl010102',0);
	showSys('stahl01010201');
	moveLayer('stahl01010201',0);
	showSys('stahl0101020101');
	moveLayer('stahl0101020102',110);
	showSys('stahl0101020102');
	showSys('dummy01');
	showSys('dummy03S01');
	showSys('dummy04S02');
}

function vs0101030101() {
	showSys('startstahl');
	showSys('stahl010103');
	moveLayer('stahl010103',0);
	showSys('stahl01010301');
	moveLayer('stahl01010301',0);
	showSys('stahl0101030101');
	moveLayer('stahl0101030102',110);
	showSys('stahl0101030102');
	showSys('dummy01');
	showSys('dummy03S01');
	showSys('dummy04S03');
}

function vs0101020201() {
	showSys('startstahl');
	showSys('stahl010102');
	moveLayer('stahl010102',0);
	showSys('stahl01010202');
	moveLayer('stahl01010202',0);
	showSys('stahl0101020201');
	showSys('dummy01');
	showSys('dummy03S01');
	showSys('dummy04S02');
}

function vs0101030201() {
	showSys('startstahl');
	showSys('stahl010103');
	moveLayer('stahl010103',0);
	showSys('stahl01010302');
	moveLayer('stahl01010302',0);
	showSys('stahl0101030201');
	showSys('dummy01');
	showSys('dummy03S01');
	showSys('dummy04S03');
}


function vs01010101e() {
	showSys('startstahl');
	showSys('stahl010101');
	showSys('stahl01010101');
	showSys('stahl01010102');
	showSys('stahl01010103');
	showSys('stahl01010104');
	showSys('dummy01');
	showSys('dummy03S01e');
}

function vs01010201e() {
	showSys('startstahl');
	showSys('stahl010102');
	moveLayer('stahl010102',0);
	showSys('stahl01010201');
	showSys('stahl01010202');
	showSys('dummy01');
	showSys('dummy03S01e');
}



function auswahl(w) {
	if (w=='') {return;}
	if (w!='') {window.open('/produkte/upload_info/'+w,'kontoWin','width=800,height=580,scrollbars=yes,location=no,status=yes');
////	document.produktinfo.reset();
	}
}

/*
function checkCMS() {
	if (top.location != self.location) {
	parent.frames['formframe'].document.aktionsform.url.value=parent.frames['suchframe'].location.href;
	}
}

checkCMS();
*/