// Function that writes the object and embed tags to the html page
function showImageLoader( image, scaleMode, bgcolor, width, height, linkURL, targetWindow, preloaderColor )
{
  document.writeln(
    '<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"' +
		'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"' +
    'ID="" WIDTH="' + width + '" HEIGHT="' + height + '">' +
    '<PARAM NAME="movie" VALUE="imageLoader.swf">' + 
    '<PARAM NAME="quality" VALUE="high">' +
    '<PARAM NAME="autostart" VALUE="true">'+
    '<PARAM NAME="bgcolor" VALUE="#000000">' +
    '<PARAM NAME="FlashVars" value="source=' + image + '&preloaderColor=' + preloaderColor + '&linkAddress=' + escape(linkURL) +'&targetWindow=' + targetWindow + '&scaleMode=' + scaleMode + '&bgColor=' + bgcolor + '&contentWidth=' + width + '&contentHeight=' + height + '" />' + 
    '<embed src="imageLoader.swf" quality="high"' + 'bgcolor=""' + 'width="' + width + '" height="' + height + '"' +
    'type="application/x-shockwave-flash" NAME="" ' + 
		'FlashVars="source=' + image + '&preloaderColor=' + preloaderColor + '&linkAddress=' + escape(linkURL) + '&targetWindow=' + targetWindow + '&scaleMode=' + scaleMode + '&bgColor=' + bgcolor + '&contentWidth=' + width + '&contentHeight=' + height + '"' + 
 		'pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></OBJECT>' );
}