var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var difference
function countup(yr,m,d){
var today=new Date()
var todayy=today.getYear()
var todaym=today.getMonth()
var todayd=today.getDate()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy
var paststring=montharray[m-1]+" "+d+", "+yr
difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1)
if (difference==-1) difference+=" dzień"
else
if (difference==1) difference+=" dzień"
else difference+=" dni"
}
countup(2007,11,24)

function wybierz(s) {
if (s.options[s.selectedIndex].value != "none"){
  var gourl = s.options[s.selectedIndex].value;    
  window.top.location.href = gourl;}
}
document.writeln("<TABLE ALIGN=\"CENTER\" VALIGN=\"TOP\" WIDTH=\"412\" HEIGHT=\"30\" CELLSPACING=\"0\" CELLPADDING=\"2\" BORDER=\"1\" BORDERCOLOR=\"#6b6b6b\">");
document.writeln("<TR>");
document.writeln("	<TD WIDTH=\"206px\" BGCOLOR=\"#ff9900\">");
document.writeln("<div style=\" font-family: Tahoma; font-weight: bold; font-size: 12px; color: #0000CC\">");
document.writeln("&nbsp;&nbsp;Pierwsza audycja 24-11-2007.&nbsp;<\/div>");
document.writeln("	<\/TD>");
document.writeln("	<TD WIDTH=\"206px\" BGCOLOR=\"#0000cc\">");
document.writeln("<div style=\" font-family: Tahoma; font-weight: bold; font-size: 12px; color: #FF9900\">");
document.writeln("&nbsp;&nbsp;Radio Cala istnieje:&nbsp;"+difference+"<\/div>");
document.writeln("	<\/TD>");
document.writeln("<\/TR>");
document.writeln("<\/TABLE>");

