function opendetail(iframeurl) {
    top.zindexes+=1;

    $("#left",top.document).append("<div class=\"content_detail\" id=\"cd"+top.zindexes+"\"><div style=\"position:relative\"><iframe src=\""+iframeurl+"\" frameborder=\"0\" width=\"554\" height=\"600\" scrolling=\"no\"></iframe><div onclick=\"closedetail("+top.zindexes+")\" style=\"position:absolute;top:4px;left:559px;width:17px;height:17px;cursor:pointer\" class=\"ui-state-default ui-corner-all\" title=\"Detailansicht schließen\"><span class=\"ui-icon ui-icon-closethick\"></span></div></div></div>");
    $("#cd"+top.zindexes,top.document).fadeIn("fast");
    

}

function closedetail(id) {
    $("#cd"+id).fadeOut("fast",function () { $("#cd"+id).remove();});
}

