function picdetails(picnr, Position){	
  var x,y;
  if (self.pageYOffset) // all except Explorer
  {
  	x = self.pageXOffset;
  	y = self.pageYOffset;
  }
  else if (document.documentElement && document.documentElement.scrollTop)
  	// Explorer 6 Strict
  {
  	x = document.documentElement.scrollLeft;
  	y = document.documentElement.scrollTop;
  		
	  if(y <= 120)
    {
      y = 125;
    }
  }
  else if (document.body) // all other Explorers
  {
  	x = document.body.scrollLeft;
  	y = document.body.scrollTop;
	  if(y <= 120)
    {
      y = 125;
    }

  }

	document.drueber.src="assets/pics/content/products/0.gif";
  //Position = 120;
  Position = window.pageYOffset + 20;
  Position = y + 20;

	yPosition=Position + "px";
	//alert(yPosition);
	//yPosition="100px";
 	document.getElementById("detailansicht").style.top=yPosition;
	document.drueber.src=picnr; 
	document.getElementById("detailansicht").style.visibility="visible";
	
}


function picdetailsweg(ups){
	document.drueber.src="assets/pics/content/products/0.gif";
	
  document.getElementById("detailansicht").style.visibility="hidden";
}

