/**************************************************************************** * createElementExplicit_MSIE.js.jsp: Copyright 2004-2005 Kronos Incorporated. All rights reserved. **************************************************************************** */ // To handle the new behavior in IE10 that fallback-content of tag is always parsed(WFM-52112). // This function checks if APPLETObject document object is null(indicating applet-loading is not successful), // then it will show the error message by calling loadingJREComplete with JREloaded argument as false. function errorOnloadCall(_APPLET_DIV_ID, _CALLERID){ var JREloaded = ( document.getElementById(_APPLET_DIV_ID).object != null ) ? true : false; if(JREloaded == false) return parent.loadingJREComplete(_CALLERID, JREloaded); } function launchExternalApplet(_APPLET_DIV_ID, _APPLET_CLSID, _APPLET_WIDTH, _APPLET_HEIGHT, _JRE_INSTALLER_URL, _ERROR_MSG, _APPLET_CLASS_NAME, _APPLET_JAR_URL, _APPLET_TYPE, _APPLET_JAR_NAME, _APPLET_JAR_VERSION, _APPLET_LOADING_IMAGE, _SUBSESSION_ID, _KRONOS_PARAMS, _ERROR_ONLOAD_CALL){ //get CallerID from the _ERROR_ONLOAD_CALL argument var CALLERID = _ERROR_ONLOAD_CALL.substring((_ERROR_ONLOAD_CALL.indexOf("\(")+2),(_ERROR_ONLOAD_CALL.indexOf(",")-1)); var ERROR_ONLOAD_CALL = "errorOnloadCall(\'" + _APPLET_DIV_ID + "\',\'" + CALLERID + "\')"; document.write( '' + ' '+_ERROR_MSG +'' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ''+ ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ''); }