<!--

function tarkistaHaku() {
	
	var hakusana = document.haku.q.value;
	hakusana = hakusana.replace(/^\s+/g, '').replace(/\s+$/g, '');
	if ((hakusana != "") && (hakusana != ".") && (hakusana != "-")) {
		return true;
	} else {
		return false;
	}
}

function sivunaviAvaaSulje(divID) {

	if (divID != '') {
		var divs = document.getElementsByTagName('div');
		var divIDstatus = document.getElementById(divID).style.display;
		for (var i=0;i<divs.length;i++) {
			if (divs[i].id.substring(0,6) == 'sn_ar_') {
				divs[i].style.display = 'none';
			}
			if (divIDstatus == "none") {
				document.getElementById(divID).style.display = 'block';
			} else {
				document.getElementById(divID).style.display = 'none';
			}
		}
	}

}


function AvaaSulje(divID) {

	if (divID != '') {

		var divs=document.getElementsByTagName('div') 
		for (var i=0;i<divs.length;i++) {
			if (divs[i].id.substring(0,6) == 'ryhma_') {
				if (divs[i].id == divID) {
					if (divs[i].style.display == 'none') {
						divs[i].style.display = '';
					} else {
						divs[i].style.display = 'none';
					}				
				} else {
					//divs[i].style.display = 'none';
				}

			}
		}
	
	}

}

function avaaLisatieto(sivu,leveys,korkeus) {

	var screenheight;
	var screenwidth;
	
	if ((leveys == null) || (korkeus == null)) {
		screenheight 	= 480;
		screenwidth		= 640;
	} else {
		screenheight	= korkeus;
		screenwidth		= leveys;
	}

	window.open("http://www.epopisto.fi/" + sivu,"Lisatieto","toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,copyhistory=0,scrollbars=1,width="+screenwidth+",height="+screenheight);	

	return false;

}

// -->
