var set_weather = 6;
function onSubmit () {
	document.getElementById("login_passwd").value = MD5(document.getElementById("login_passunhash").value);
	document.getElementById("login_passunhash").value 	= "";
}
function onChangeHistory () {
	document.getElementById("searchstring").value = document.getElementById("selecthistory").value;
}
function timeout () {
//	setTimeout ("timeout()",8000);
//	document.getElementById("sneh").src = "http://www.sneh.host.sk/snehd.php?typ=4";
}
function timeout_banner () {
//	setTimeout ("timeout_banner()",8000);
//	document.getElementById("banner_img").src = "/get_banner.php";
}
function timeout_weather () {
	//setTimeout ("timeout_weather()",8000);
	if (set_weather == 4) {
		document.getElementById("weather_img").src = "http://data.meteo.sk/mini/freeza1.php";
	}
	if (set_weather == 2) {
		document.getElementById("weather_img").src = "http://data.meteo.sk/mini/freemar1.php";
	}
	if (set_weather == 1) {
		document.getElementById("weather_img").src = "http://data.meteo.sk/mini/freelm1.php";
	}
	if (set_weather == 3) {
		document.getElementById("weather_img").src = "http://data.meteo.sk/mini/freeor1.php";
	}
	if (set_weather == 5) {
		document.getElementById("weather_img").src = "http://data.meteo.sk/mini/freeca1.php";
	}
	set_weather++;
	if (set_weather > 5) {
		set_weather = 1;
	}
}

function toogleVisibility(id){
    var blok = document.getElementById(id);
    if(blok.style.visibility == "hidden"){
        blok.style.visibility = "visible";
        blok.style.display = "block";
    }else{
        blok.style.visibility = "hidden";
        blok.style.display = "none";
    }
    return false;
}