function getelement(id) {
	if(document.getElementById){ return document.getElementById(id); }
	else { return document[id]; }
}
function avaaIkkuna(url, width, height){
	if(width == '' || width == 'undefined') width = 300;
	if(height == '' || height == 'undefined') height = 300;

	options = 'toolbar=no,directories=no,location=no,status=no,scrollbars=yes,menubar=no,resizable=yes,width='+width+',height='+height;
	omaIkkuna = open(url, 'omaikkuna', options);
	omaIkkuna.focus();
}
function vaihdaOsasto(osasto){

	if(getelement("tapahtuman_ajankohta1")){
		if(osasto == 2){
			getelement("tapahtuman_ajankohta1").style.display='';
			getelement("tapahtuman_ajankohta2").style.display='';
			getelement("ilmoitus_voimassa").style.display='none';
		} else {
			getelement("tapahtuman_ajankohta1").style.display='none';
			getelement("tapahtuman_ajankohta2").style.display='none';
			getelement("ilmoitus_voimassa").style.display='';
		}
	}
}
function tyhjenna_hakukentta(){
	if(getelement("hakusana").value == 'esim. helsinki 00100') getelement("hakusana").value = '';
}

