<!--
	
	// if IE5.5+ on Win32, then display PNGs with AlphaImageLoader
	//
	if ((browser.isIE55 || browser.isIE6up) && browser.isWin32) {
        var pngAlpha = true;
	
	// else, if the browser can display PNGs normally, then do that
	//
	} else if (
	(browser.isGecko) || 
	(browser.isSafari) || 
	(browser.isFirebird) || 
	(browser.isIE5up && browser.isMac) || 
	(browser.isOpera && browser.isWin && browser.versionMajor >= 6) || 
	(browser.isOpera && browser.isUnix && browser.versionMajor >= 6) || 
	(browser.isOpera && browser.isMac && browser.versionMajor >= 5) || 
	(browser.isOmniweb && browser.versionMinor >= 3.1) || 
	(browser.isIcab && browser.versionMinor >= 1.9) || 
	(browser.isWebtv) || 
	(browser.isDreamcast)
	) {
        var pngNormal = true;
	}
	
	var counter=0;
	
	function od_displayImage(strId, strPath, strHref, intWidth, intHeight, strClass, strTitle) {  
 		
 		counter++;
 		
 		if (pngAlpha)
  			output = '<div title="'+strTitle+'" style="height:'+intHeight+'px;width:'+intWidth+'px;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+strPath+'\', sizingMethod=\'scale\')" id="'+strId+counter+'" class="'+strClass+'"></div>';
      	else if (pngNormal)
  			output = '<img title="'+strTitle+'" src="'+strPath+'" width="'+intWidth+'" height="'+intHeight+'" name="'+strId+counter+'" border="0" class="'+strClass+'" />';
       	//else	
        	//output = '<img title="'+strTitle+'" src="'+strPath+'.gif" width="'+intWidth+'" height="'+intHeight+'" name="'+strId+counter+'" border="0" class="'+strClass+'" />';
        
        if(strHref!='')
        	output = strHref+output+'</a>';
        
        document.write(output);
	}

//-->
