function GET(arrayKey, arrayValue, Value) { 
        count = arrayKey.length; 
        for(i=0;i<count;i++) { 
            if(arrayKey[i]==Value) { 
                return arrayValue[i]; 
                break; 
            } 
        } 
    } 

function emb_swf() { 
        var key = new Array(); 
        var value = new Array(); 
        error_check=0; 

        for(i=0;i<emb_swf.arguments.length;i++) { 
            data = emb_swf.arguments[i].split('='); 
            key[i] = data[0]; 
            value[i] = data[1]; 
        } 

        contents = ''; 

        srcdata = GET(key,value,'src'); 
        swf_file = GET(key,value,'src'); 
        mp3_file = GET(key,value,'mp3file'); 
        height_ =  GET(key,value,'height'); 
        width_ =  GET(key,value,'width'); 
     
   contents +='<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="'+width_+'" height="'+height_+'">';
   contents +='<param name="movie" value="'+swf_file+'">';
   contents +='<param name="quality" value="high">';
   contents +='<param name="wmode" Value="Transparent">';
   contents +='<embed src="'+swf_file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width_+'" height="'+height_+'" wmode="transparent"></embed></object>';
   document.write(contents); 
        
    } 
