function showhideforecasts()
{
    var obj = document.getElementById('forecasts');
    if(obj.style.display == 'none') {
	obj.style.display = '';
	document.cookie = "moyatforecasts=show;expires=Thu, 01-Jan-2043 00:00:01 GMT;path=/;domain=.moyat.net";
    } else {
	obj.style.display = 'none';
	document.cookie = "moyatforecasts=;expires=Thu, 01-Jan-1970 00:00:01 GMT;path=/;domain=.moyat.net";
    }
}

function showhideweathermaps()
{
    var obj = document.getElementById('weathermaps');
    if(obj.style.display == 'none') {
	obj.style.display = '';
	document.cookie = "moyatweathermaps=show;expires=Thu, 01-Jan-2043 00:00:01 GMT;path=/;domain=.moyat.net";
    } else {
	obj.style.display = 'none';
	document.cookie = "moyatweathermaps=;expires=Thu, 01-Jan-1970 00:00:01 GMT;path=/;domain=.moyat.net";
    }
}

function showmap(image,title)
{
    var mapobj = document.getElementById('selectedmap');
    mapobj.innerHTML = '<tr><td align="right">'+title+'</td></tr><tr><td><img src="http://vremeto.bg/uploads/ftp_data/'+image+'.png" width="100%"></td></tr>';
}

