/* +-------------------------------------------------------------------+ | J S - L O A D E R (v1.6) | | P a r t I | | | | Copyright Gerd Tentler www.gerd-tentler.de/tools | | Created: Mar. 26, 2002 Last modified: Apr. 9, 2007 | +-------------------------------------------------------------------+ | This program may be used and hosted free of charge by anyone for | | personal purpose as long as this copyright notice remains intact. | | | | Obtain permission before selling the code for this program or | | hosting this software on a commercial website or redistributing | | this software over the Internet or in any other medium. In all | | cases copyright must remain intact. | +-------------------------------------------------------------------+ ====================================================================================================== This script was tested with the following systems and browsers: - Windows XP: IE 6, NN 7, Opera 7 + 9, Firefox 2 - Mac OS X: IE 5 If you use another browser or system, this script may not work for you - sorry. NOTE: Safari 1.0 (Mac OS X) does not support "document.images[].complete", so the progress bar will not be shown. ====================================================================================================== */ //---------------------------------------------------------------------------------------------------- // Configuration //---------------------------------------------------------------------------------------------------- var boxText = "Searching hotels ... please wait!"; // dialog box message var boxFont = "bold 14px Arial,Helvetica"; // dialog box font (CSS spec: "style size family") var boxFontColor = "#855620"; // dialog box font color var boxWidth = 250; // dialog box width (pixels) var boxHeight = 100; // dialog box height (pixels) var boxBGColor = "#FFFFD0"; // dialog box background color var boxBorder = "2px outset #E0E0E0"; // dialog box border (CSS spec: "size style color") var barLength = 200; // progress bar length (pixels) var barHeight = 15; // progress bar height (pixels) var barColor = "#FC8716"; // progress bar color var barBGColor = "#E0D0C0"; // progress bar background color var fadeInSpeed = 20; // content fade-in speed (0 - 30; 0 = no fading)* // * Fading was successfully tested only on Windows XP with IE 6, NN 7 and Firefox 1. It seems that // other browsers and systems do not support this feature. //---------------------------------------------------------------------------------------------------- // Build dialog box and progress bar //---------------------------------------------------------------------------------------------------- var safari = (navigator.userAgent.indexOf('Safari') != -1) ? true : false; if((document.all || document.getElementById) && !safari) { document.write(' ' + '
| ' +
(boxText ? ' ' + boxText + ' ' : '') + '
|