function showWeatherBox()
{
	document.getElementById("weatherBox").style.visibility = "visible";
}

function hideWeatherBox()
{
	document.getElementById("weatherBox").style.visibility = "hidden";
}

//Get Weather Forecast
function getWeatherForecast()
{
	document.getElementById("weatherData").innerHTML = "<iframe src='http://news.bbc.co.uk/weather/forecast/365/Next3DaysEmbed.xhtml?target=_parent' allowTransparency='true' width='306' height='435' frameborder='0' style='padding-top : 10px;'>You must have a browser that supports iframes to view the BBC weather forecast</iframe>";
}
