<!--
if(location.href.indexOf('page/0/8/0/')==-1)
    {

	var message=""; 
	function clickIE() 
	    {
		if (document.all) 
    		    {
    			(message);
			return false;
    		    }
	    } 

	function clickNS(e) 
	    {
		if (document.layers||(document.getElementById&&!document.all)) 
    		    { 
    			if (e.which==2||e.which==3) 
			    {
				(message);
				return false;
			    }
    		    }
	    } 

	if (document.layers) 
	    {
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown=clickNS;
	    } 
	else
	    {
		document.onmouseup=clickNS;
		document.oncontextmenu=clickIE;
	    }
    } 
			       


function getCookieVal (offset) 
  {
    var endstr = document.cookie.indexOf (";", offset);
    if (endstr == -1) { endstr = document.cookie.length; }
    return unescape(document.cookie.substring(offset, endstr));
  }
	  
function GetCookie (name) 
  {
    var arg = name + "=";
    var alen = arg.length;
    var clen = document.cookie.length;
    var i = 0;
    while (i < clen) 
      {
        var j = i + alen;
        if (document.cookie.substring(i, j) == arg)
	  {
            return getCookieVal (j);
          }
        i = document.cookie.indexOf(" ", i) + 1;
        if (i == 0) break; 
      }
    return null;
  }
						        
function DeleteCookie (name,path,domain) 
  {
    if (GetCookie(name)) 
      {
        document.cookie = name + "=" + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + "; expires=Thu, 01-Jan-70 00:00:01 GMT";
      }
  }
									
function SetCookie (name,value,expires,path,domain,secure) 
  {
    document.cookie = name + "=" + escape (value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
  }
									    
function resize_window() 
    {
      var width = document.myimage.width; 
      var height = document.myimage.height;
      var x=(screen.availWidth/2)-(width/2)
      var y=(screen.availHeight/2)-(height/2)      
      if (navigator.appName.indexOf("Netscape") != -1) 
        {  
          window.innerHeight = height;
	  window.innerWidth = width;
        }
      else 
      if (navigator.appName.indexOf("Opera") != -1) 
        {
	  window.resizeTo (width+12, height+31);
        }
      else 
      if (navigator.appName.indexOf("Microsoft") != -1) 
        { 
	  window.resizeTo (width+12, height+31);
        }
      else 
        {
          window.resizeTo (width+14, height+34);
        }
      self.moveTo(x,y);	
      setTimeout("document.getElementById('preloader').style.visibility='hidden'; document.getElementById('img').style.visibility='visible'; document.getElementById('copyrights').style.visibility='visible';",200);
    }			       
function popout(id,kind)
  {
    if(kind == 0)
      {
        var y=(screen.availWidth/2)-100
	var x=(screen.availHeight/2)-25
        flyout=window.open("produktImg.php?id="+id,"flyout","scrollbars=no,resizable=no,width=200,height=50,left="+y+",top="+x)
      }	
    if(kind == 1)
      {
        var y=(screen.availWidth/2)-100
	var x=(screen.availHeight/2)-25
        flyout=window.open("produktImg.php?id="+id,"flyout","scrollbars=no,resizable=no,width=200,height=50,left="+y+",top="+x)
      }	
    flyout.focus();
  }  		       
//-->
	