function tarkista_lomake()
{
	var nimi = document.kommentointi.nimi.value;
	var kommentti = document.kommentointi.kommentti.value;
	
	var send=true;
           
	//käydään kentät läpi
	if(nimi == "")
		send=false;
	if(kommentti == "")
		send=false;
	
	//lähetetään lomake scriptille
	if(send)
		return true;
	else
		alert("Syötä jokaiseen vaadittuun kenttään arvo!");    
		return false;  
}

function ensure_remove(url) 
{
		var ok = confirm("Haluatko varmasti poistaa tiedoston");
		
		if(ok)
			window.location.href = url;
		else
			document.location.href = "index.php";
}

function swap_content(span) {
	displayType=(document.getElementById(span).style.display=='none') ? 'block':'none';
	document.getElementById(span).style.display=displayType;
}
