	function fnOver( oEl ){
        oEl.src = fnGetName(oEl.src) + '_over.gif';
	}

	
	function fnOut( oEl ){
        	oEl.src = fnGetName(oEl.src) + '.gif';
	}
    
    function fnGetName( strName ){
    	strText = new String(strName);
    	//strText = strText.substring( strText.lastIndexOf('/')+1 )
    	
    	strText = strText.substring(0, strText.lastIndexOf('.gif') );
    	
    	
    	
    	if( strText.lastIndexOf('_over') != -1 )
    		strText = strText.substring(0, strText.lastIndexOf('_over') );
    		
    	return strText;
    }
    
    function ShowFlash( sValue, sWidth, sHeight )
    {
       document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+sWidth+'" height="'+sHeight+'">\n');
       document.write('<param name="movie" value="'+sValue+'" />\n');
       document.write('<param name="quality" value="high" />\n');
       document.write('<param name="loop" value="false" />\n');
       document.write('<embed src="'+sValue+'" loop="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+sWidth+'" height="'+sHeight+'"></embed>\n');
       document.write('</object>\n');
    }