function playJs(nRadio,nArticle,width,bColor,tColor,lColor,aColor,hColor,htColor,decor)
{
	variable();
	if (gplaycz_word_radii == '') gplaycz_word_radii = 'rádii';
	var line=1;
	var wTable = width - 40;
	if(decor=='underline') {
		var _over = ';this.style.textDecoration=\'underline\'';
		var _out = ';this.style.textDecoration=\'none\'';
		}
	else {
		var _over = '';
		var _out = '';
		}
	if (nRadio>=1) 
	{
		
		
		var out;
		out  = '<div style="height:22px;font-size:12px;padding-top:5px;width:'+ width +'px;color:#' + htColor + ';background-color:#' + hColor + ';text-align:center;font-weight:bold">'
		   	 + 'TOP ' + nRadio + ' ' + gplaycz_word_radii + ' na PLAY.CZ'
	 	 	 +  '</div>';
	 
	     out +='<table style="border-collapse:collapse;width:'+ width +'px;text-align:left;font-size:12px;" padding="2">';
		 for (var idx=0;idx<nRadio;idx++) 
		 {	
			 out += '<tr style="background-color:#' + bColor + ';" >';
			 out += '<td style="color:#'+ lColor + ';background-color:#' + bColor + ';padding-left:3px;" >' + line + '. </td>';
			 out += '<td style="color:#'+ lColor + ';width:'+ wTable + 'px;" ><a style="text-decoration:none;color:#'+ lColor+ ';" href="" onmouseover="this.style.color=\'#'+ aColor +'\'' + _over + '" onmouseout="this.style.color=\'#'+ lColor +'\'' + _out + '"  onclick="window.open(\'http://www.play.cz/listen/listen.php?' + radio_link[idx] +'\', \'v2player\', \'width=670,height=640,status=0,scrollbars=0,resizable=0\');return false;" >' + radio_name[idx] + '</div></td>';
			 out += '<td style="color:#'+ tColor + ';text-align:right;;padding-right:3px;" >' + radio_listener[idx] + '</td>';
			 out += '</tr>';
             line ++;
		 }
		 out += '</table>';
	}
	
	if (nArticle==1) 
	{
		var nNews = 3;
		 out +='<table style="background-color: #' + bColor + ';width: '+ width +'px;font-size:12px;text-align:left;border-top:1px solid #' + tColor + ';" >';
		 for (var idy=0;idy<nNews;idy++) 
		 {
	 	 	out += '<tr>';
		 	out += '<td><a style="text-decoration:none;color:#'+ lColor+ ';" href="http://www.play.cz/'+ news_link[idy]  +'" onmouseover="this.style.color=\'#'+ aColor +'\'" onmouseout="this.style.color=\'#'+ lColor +'\'"  >'+ news_header[idy]+ ' </a></td>';
		 	out += '</tr>';
		 }
	} 
	document.getElementById('play-cz-top-radio').innerHTML=out;
}