function cartOrder(cartid) {
	var pzn=cartid.substr(5);
	
	if(window.innerWidth) {
		var width=window.innerWidth;
	} else if(document.body && document.body.offsetWidth) {
		var width=document.body.offsetWidth;
	}
	
	if(window.innerHeight) {
		var height= window.innerHeight;
	} else if (document.body && document.body.offsetHeight) {
    		var height=document.body.offsetHeight;
	}
	
	popup=window.open("",
		"shop", // window name
		+"toolbar=1"
		+",location=1"
		+",directories=1"
		+",status=1"
		+",menubar=1"
		+",dependent=1"
		+",scrollbars=1"
		+",resizable=1"
		+",width="+width
		+",height="+height
	);
	
	/*
	popup.moveTo(
		200, // x
		200 // y
	);
	*/
	
	popup.location.href="http://www.medikamente-per-klick.de/shop/produkte/produktdetails.html&pzn="+pzn;
}

function toggleAbstract(a,b) {

window.addEvent('domready', function(){
			var boxSlide = new Fx.Slide(a);
			boxSlide.hide();
			
			$(b).addEvent('click', function(e){
				e = new Event(e);
				$(a).setStyle('visibility', 'visible');
				boxSlide.toggle();
				e.stop();
			});
		});

}


// für IE6 -> Tooltip
  function show(element){

           element.className += "hover";

   }
/*
 function hide(element){

           element.className = element.className = "";

     }
*/