// JavaScript Document
function showDialog(url, titel, breite, hoehe){
$("#boxID").html('<iframe id="myIFrame" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" />').dialog("open");
$("#myIFrame").attr("src",url);
$("#boxID").dialog( 'option', 'position', "left top");
$("#boxID").dialog({
    title: titel,                              
    modal: true,
    autoOpen: false,
    height: hoehe,
    width: breite
  });
return false;
}
$(document).ready(function() {
   $("#boxID").dialog({
       modal: true,
       autoOpen: false
   });
});

function showDialogUpload(url, titel, breite, hoehe){
$("#uploadID").html('<iframe id="myIFrameUpload" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" />').dialog("open");
$("#myIFrameUpload").attr("src",url);
$("#uploadID").dialog( 'option', 'position', "left top");
$("#uploadID").dialog({
     title: titel,                              
     modal: true,
     autoOpen: false,
     height: hoehe,
     width: breite
   });
return false;
}
$(document).ready(function() {
   $("#uploadID").dialog({
     modal: true,
     autoOpen: false
   });
});

