function detailOpen(id,i,a,L,w,h) {
  Show=window.open('/typo3conf/ext/user_arbeit/detailshow.php?id='+id+'&detail='+i+'&at='+a+'&L='+L,'iwin','width='+parseInt(w)+',height='+parseInt(h)+',resizable=0,scrollbars=0,toolbar=0,status=no,left=250,top=250');
  Show.focus();
}

function imgOpen(id,w,h,d,L) {
  Show=window.open('/typo3conf/ext/user_arbeit/picshow.php?id='+id+'&w='+w+'&h='+h+'&d='+d+'&L='+L,'iwin','width='+w+',height='+h+',resizable=0,scrollbars=0,toolbar=0,status=no,left=250,top=250');
  Show.focus();
}

$(document).ready(function(){
  $("#cllink").hover(
    function () { $("#climg").attr("src","/fileadmin/images/bagarrow2.gif");}, 
    function () { $("#climg").attr("src","/fileadmin/images/bagarrow1.gif"); } 
  );
  $(".lightbox-enabled").lightbox();
});

function popupOpen(url,w,h) {
	if(w == 0) { w = $(window).width(); }
	if(h == 0) { h = $(window).height(); }
	var left = ($(window).width()/2) - (w/2);
	var top = ($(window).height()/2) - (h/2);
  Show=window.open(url,'iwin','width='+parseInt(w)+',height='+parseInt(h)+',resizable=0,scrollbars=0,toolbar=0,status=no,left='+left+',top='+top);
  Show.focus();
}
