function weather_popup()
{
   window.open('http://www.weatheroffice.gc.ca/city/pages/bc-86_metric_e.html', '_blank', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=600');
}



function toggle_off()
{
   for(x = 1; x <= 10; x++)
   {
      document.getElementById('info_' + x).style.display = 'none';
   }
}

function toggle_info(id)
{
   if(document.getElementById('info_' + id).style.display == 'none')
      document.getElementById('info_' + id).style.display = 'block';

   else if(document.getElementById('info_' + id).style.display == 'block')
      document.getElementById('info_' + id).style.display = 'none';

   if(document.getElementById('info_' + id).style.display == 'block')
      document.getElementById('switch_' + id).src = './_images/minus.gif';

   else if(document.getElementById('info_' + id).style.display == 'none')
      document.getElementById('switch_' + id).src = './_images/plus.gif';
}

function desktops(file)
{

        deskWin = window.open('_desktops/index.asp?file='+file, 'desktop', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=400');
        deskWin.focus();

}
