/**
 * Galerie Popups
 * 
 * @author Christina Böhme <kontakt@christinaboehme.de>
 * @copyright Copyright (c) 2007-2008 Christina Böhme
*/
function initShowcasePopups(wrapperId, width, height){
	var wrapperEl=document.getElementById(wrapperId);
	var aList=wrapperEl.getElementsByTagName("A");
	if (aList.length>0){
		var l=aList.length;
		for (var i=0; i<l; i++){
			aList[i].onclick=new Function("return openShowcasePopup (\'"+aList[i]+"\', \'"+width+"\', \'"+height+"\');");
			aList[i].removeAttribute("href");
		}
	}
}

function openShowcasePopup(url, width, height){
	var win = window.open(url, "win", "width="+width+",height="+height+",status=yes,scrollbars=no,resizable=no");
	win.focus();
}
