function ErrorBox(a){return AlertBox(a,false)}function InfoBox(a){return AlertBox(a,false)}function vsErrorBox(a,b){return vsMessageBox(g_lggWarnung,a,b+"/attention.gif")}function vsInfoBox(a,b,c){return vsMessageBox(g_lggInfo,a,"",c)}function vsMessageBox(a,b,d,e){if("undefined"==typeof a){a=""}if("undefined"==typeof b){b=""}if("undefined"==typeof d){d=""}if("undefined"==typeof e){e=""}var c="";c+="<table class='form' style='margin-left:10px;'>";c+="<tr>";c+="<td>";if(""!=d){c+="<img src='"+d+"' align='left'>"}c+=ReplaceAll(b,"\n","<br>");c+="</td>";c+="</tr>";c+="</table>";return ModalBox(a,c,[{text:g_lggOk,css:"action submit",code:e}],"")}function AlertBox(a,c){ASSERT(""!=a);if(""==a){return}a=DecodeString(a);if(("undefined"==typeof c)||(c)){var b=new Date();a+="\n------------";if("string"==typeof g_FileName){a+="\nModule: "+g_FileName}a+="\nT-Code: "+b.getTime()}window.alert(a)}function ConfirmBox(a){ASSERT(""!=a);return(""!=a)&&window.confirm(DecodeString(a))}function InputBox(a,b){if(""==a){return""}if("undefined"==typeof b){b=""}var c=window.prompt(DecodeString(a),DecodeString(b));if(null==c){c=""}return c};