
var totTidsteg;
var statPlace = false;

  /*
   * Write an script tag into the document that will make the forecast table for the current place available.
   */
   
  function writeStatImporter() {
    if (isLeafNode(selectedNodeNum)) {
      var placeId = nodeArray[selectedNodeNum].placeId;
      /* check for sweden */
      //if (String(placeId).substring(0, 4) == "1001") {
      //  document.write("<script language=javascript src='http://natvader.smhi.se/natvader/gateway/getmodule.php?user_id="+ mainUserId +"&module_request=landvader&komId=" + placeId + "'><\/script>");
      //}
    }
  }

  /*
   * Write the imported forecast data table into the document.
   */

  function printStatTable() {
   var placeId = nodeArray[selectedNodeNum].placeId;
   if ((String(placeId).length>10) && ((String(placeId).substring(0, 4) == "1001") || (String(placeId).substring(0, 4) == "1003"))) {
	document.write("<tr height=\"100\"><td align=\"center\" valign=\"top\" bgcolor=\"#FFFFFF\">");
	document.write("<table bgcolor=white cellspacing=0 cellpadding=0 width=\"230\">");
//      document.write("<tr><td><img src='img/trans.gif' width='100' height='179'></td></tr>");
      document.write("<tr><td align=middle>Temp</td>");
      document.write("<td align=middle>Nederbörd</td></tr>");
	document.write("<tr><td><a href='javascript:void(0);' onclick='window.open(\"http://natvader.smhi.se/bizmet/prods/vaderstatistik_tmp_nv.php?inSel="+placeId+"\", \"Temperatur\", \"location=no, menubar=no, Height=400, width=450, status=no, resizable=no, scrollbar=no\")'><img src='http://natvader.smhi.se/bizmet/prods/vaderstatistik_tmp_nv_small.php?inSel="+placeId+"' width='110' height='89' border='0'></a></td>");
	document.write("<td><a href='javascript:void(0);' onclick='window.open(\"http://natvader.smhi.se/bizmet/prods/vaderstatistik_nbd_nv.php?inSel="+placeId+"\", \"Nederbörd\", \"location=no, menubar=no, Height=400, width=450, status=no, resizable=no, scrollbar=no\")'><img src='http://natvader.smhi.se/bizmet/prods/vaderstatistik_nbd_nv_small.php?inSel="+placeId+"' width='110' height='89' border='0'></a></td></tr>");
	document.write("</table>");
	document.write('</td>');
   } else {
	document.write('<tr height=\"100\"><td bgcolor=\"#FFFFFF\"><img src=\"img/trans.gif\" height=\"100\" width=\"110\"></td></tr>');
   }
  }

