function fileupload() { var a = window.showModalDialog("../fileupload/initUpload.do","",'dialogWidth=500px; dialogHeight=270px; center=yes;help=no'); if ( a == undefined ) { return ""; } return a; } function fileupload(fileListType) { var a = window.showModalDialog("../fileupload/initUpload.do?fileListType="+fileListType,"",'dialogWidth=500px; dialogHeight=270px; center=yes;help=no'); if ( a == undefined ) { return ""; } return a; } function imageFileupload(fileListType) { var a = window.showModalDialog("../fileupload/initUpload.do?fileListType="+fileListType+"&replaceIfExists=&allowedAttachType=image","",'dialogWidth=500px; dialogHeight=310px; center=yes;help=no'); if ( a == undefined ) { return ""; } return a; } function textFileupload(fileListType) { var a = window.showModalDialog("../fileupload/initUpload.do?fileListType="+fileListType+"&allowedAttachType=text","",'dialogWidth=500px; dialogHeight=290px; center=yes;help=no'); if ( a == undefined ) { return ""; } return a; } function textLanguageFileupload(fileListType) { var a = window.showModalDialog("../fileupload/initUpload.do?fileListType="+fileListType+"&allowedAttachType=text&languageCode=","",'dialogWidth=500px; dialogHeight=290px; center=yes;help=no'); if ( a == undefined ) { return ""; } return a; } function textEncodeFileupload(fileListType) { var a = window.showModalDialog("../fileupload/initUpload.do?fileListType="+fileListType+"&allowedAttachType=text&fileEncode=","",'dialogWidth=500px; dialogHeight=290px; center=yes;help=no'); if ( a == undefined ) { return ""; } return a; }