var width, height;
switch(blopita_player_type){
 case 'tv':
   width = 160; height = 363; break;
 case 'tv_small':
   width = 180; height = 220; break;
 case 'normal':
   width = 320; height = 265; break;
}

var swfUrl = blopita_url + '/blopita/' + blopita_player_type + '.swf';
var xmlUrl = blopita_url.replace('http://', '') + '/pages/blopita/playlist.pl'
             + '?hid=' + 20
             + '&sid=' + blopita_site_id;

if(blopita_content_id)   xmlUrl = xmlUrl + '&cid=' + blopita_content_id;
if(blopita_player_type)  xmlUrl = xmlUrl + '&pt='  + blopita_player_type;
if(blopita_player_color) xmlUrl = xmlUrl + '&pc='  + blopita_player_color;

var srcUrl = swfUrl + '?xml=' + encodeURIComponent(xmlUrl + '&') + '&_time=' + (new Date()).getTime();

document.write('<object width="' + width + '" height="' + height + '"><param name="movie" value="' + srcUrl + '" /><param name="allowscriptaccess" value="always" /><param name="wmode" value="transparent" /><embed src="' + srcUrl + '" width="' + width + '" height="' + height + '" allowscriptaccess="always" wmode="transparent" type="application/x-shockwave-flash" /></object>');
