function myopen(filename,windowname,properties) {
		mywindow = window.open(filename,windowname,properties);
		mywindow.focus(); }
		
function postProcess() {
	//masthead info
	document.getElementById('temp_f').innerHTML = temp_f;
	document.getElementById('temp_c').innerHTML = temp_c;
	document.getElementById('dayCount').innerHTML = dayCount;
}

function writeSponsorMap() {
	sponsormap = "\r\n<map name=\"sponsors_sub_Map\" id=\"sponsors_sub_Map\">\r\n\t<area shape=\"rect\" alt=\"Anchorage Chrysler Dodge Center\" coords=\"321,16,452,53\" href=\"http://www.anchoragechrysler.com/ou/anchorage-chrysler-dodge/\" target=\"_blank\" />\r\n\t<area shape=\"rect\" alt=\"GCI\" coords=\"227,11,294,57\" href=\"http://www.gci.com/\" target=\"_blank\" />\r\n\t<area shape=\"rect\" alt=\"Wells Fargo\" coords=\"151,11,197,56\" href=\"https://www.wellsfargo.com/\" target=\"_blank\" />\r\n\t<area shape=\"rect\" alt=\"Cabela&rsquo;s\" coords=\"31,15,122,53\" href=\"http://www.cabelas.com/cabelas/en/templates/home/doorway-home.jsp?vendor=door_iditarod.jsp\" onclick=\"javascript:urchinTracker(\'/outgoing/cabelas_com\');\" target=\"_blank\" />\r\n</map>\r\n";
	document.write(sponsormap);
}
//writeSponsorMap();

//Unobtrusive popup - For generic pop-up situations
window.onload = function() {
  if (!document.getElementsByTagName) return false;
  var lnks = document.getElementsByTagName("a");
  for (var i=0; i<lnks.length; i++) {
    if (lnks[i].getAttribute("class") == "smallpopup") {
      lnks[i].onclick = function() {
        smallPopUp(this.getAttribute("href"));
        return false;
      }
    }
  }
  for (var i=0; i<lnks.length; i++) {
    if (lnks[i].getAttribute("class") == "bigpopup") {
      lnks[i].onclick = function() {
        bigPopUp(this.getAttribute("href"));
        return false;
      }
    }
  }
}

function smallPopUp(winURL) {
  window.open(winURL,"popup","width=500,height=400");
}

function bigPopUp(winURL) {
  window.open(winURL,"popup","width=788,height=550,scrollbars=no,location=no,menubar=no");
}

