var iconyObject=function(){this.initialize.apply(this,arguments);}
iconyObject.prototype={
  url: 'http://www.icony.de/EXTERN/api/icony_api.php',
  params: new Array(),
  initialize:function(options){
    if(arguments.length==0){return;}
    if(!options.type || options.type.length==0){return;}
    this.params = new Array();
    for (var property in options) {this.params[this.params.length]=property+'='+encodeURIComponent(options[property]);}
    var src=this.url+'?'+this.params.join('&amp;');
    document.write('<scri'+'pt type="text/javascript" src="'+src+'">'+'</scr'+'ipt>');
    iconyDataCallback = options.callback || function(){return;};
  }
}