function dovoiceit()
{
var v_arguments = dovoiceit.arguments;
for (var i = 0; i < v_arguments.length; i++)
            {    
                //alert("Argument number " + i + " value = " + v_arguments[i]);
            }
var v_host = v_arguments[0];
var v_version = v_arguments[1];
var v_lang = v_arguments[2];
if(typeof(v_arguments[3]) == 'undefined'){
 var v_other = '';
 }else{
 var v_other = v_arguments[3];
 }
var v_txt ='';
v_txt = v_txt+'<div id="voiceit_container">\n';
v_txt = v_txt+'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.#version=10,0,0,0" height="163" width="233">\n';
v_txt = v_txt+'<param name="movie" value="http://www.voice-it.biz/files/getbyname/VOICE-IT.swf?PARAM_host='+v_host+'&PARAM_cliversion='+v_version+'&PARAM_localization='+v_lang+'&'+v_other+'">';
v_txt = v_txt+'<param name="id" value="movie">';
v_txt = v_txt+'<param name="quality" value="best">';
v_txt = v_txt+'<param name="play" value="true">';
v_txt = v_txt+'<param name="wmode" value="transparent">';
v_txt = v_txt+'<embed height="163" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" src="http://www.voice-it.biz/files/getbyname/VOICE-IT.swf?PARAM_host='+v_host+'&PARAM_cliversion='+v_version+'&PARAM_localization='+v_lang+'&'+v_other+'" type="application/x-shockwave-flash" width="233" quality="best" name="movie" id="movie" wmode="transparent">\n';
v_txt = v_txt+'</object>\n';
v_txt = v_txt+'</div>\n';
document.write(unescape(v_txt));
}