function exec_me(params) {
//bust cache
//alert('111');
rnd=Math.floor(Math.random()*1000000);
url='http://upublishmx.victorinox.ch/services/downloads.cfm?n=' + rnd + params;
//wait a few seconds and then fetch image
setTimeout('loadimg(url)',192);
}
function loadimg(url) {
//declare image
var i=new Image(1,1);
//load image
i.src=url;
}
