function printDayRecordStats(divString)
{
   var test=typeof divString;
   if(test == 'undefined')
   {
      var divString = "<div id=\"ntv_dayrecord\" style='border:1px solid;'>";
   }
   document.write(divString);
   document.write("<h1 class='ntv_h1'>Vädret just nu</h1>");
   printDayRecord();
  	document.write('</div>');
}

function printDayRecord()
{
   document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%">');
   document.write('<tr height="256">');
	document.write('<td valign="top" bgColor="#FFFFFF">');
	document.write('<table border=0>');
	document.write('<tr><td colspan="2" class="ntv_stat_dayrecord_rubrik">'+phraseArray[54]+' ('+sweStatArr['time']+')</td></tr>');
	document.write('<tr><td class="ntv_stat_dayrecord_rubrik">'+phraseArray[19]+'</td><td class="ntv_stat_dayrecord_rubrik">'+phraseArray[20]+'</td></tr>');
	for (var i=0; i<4; i++)
	{
		if (sweStatArr['kommun'+i].length > 12)
      {
         sweStatArr['kommun'+i] = sweStatArr['kommun'+i].substring(0,11)+"."
      }
		document.write('<tr><td class="ntv_stat_dayrecord_kommun">');
	document.write(sweStatArr['kommun'+i]);
		document.write('</td><td class="ntv_stat_dayrecord_value">');
		document.write(sweStatArr['temp'+i]);
		document.write('°C</td></tr>');
	}

	document.write('<tr><td colspan="2" class="ntv_stat_dayrecord_rubrik">'+phraseArray[55]+' ('+sweStatArr['time']+')</td></tr>');
	document.write('<tr><td class="ntv_stat_dayrecord_rubrik">'+phraseArray[19]+'</td><td class="ntv_stat_dayrecord_rubrik">'+phraseArray[20]+'</td></tr>');
	for (var i=5; i<9; i++)
	{
		if (sweStatArr['kommun'+i].length > 12)
      {
         sweStatArr['kommun'+i] = sweStatArr['kommun'+i].substring(0,11)+"."
      }
		document.write('<tr><td class="ntv_stat_dayrecord_kommun">');
		document.write(sweStatArr['kommun'+i]);
		document.write('</td><td class="ntv_stat_dayrecord_value">');
		document.write(sweStatArr['temp'+i]);
		document.write('°C</td></tr>');
	}
	document.write('<tr><td></td><td class="ntv_legend_question"><a href="javascript:void(0);" onclick="window.open(\'beskrivning_warmcold.html\', \'\', \'location=no, menubar=no, Height=250, width=250, status=no, resizable=no, scrollbar=no \')"><img src="'+ntvInfoPath+'" border=0></td></tr>');
	document.write('</table>');
	document.write('</td>');
	document.write('</tr>');
	document.write('</table><!-- /right content -->');
}


