function showMenu(el){
	document.getElementById(el).style.display="block";
}

function hideMenu(el){
	document.getElementById(el).style.display="none";
}

function showMenuColor(el){
	document.getElementById(el).style.backgroundColor="#828282";
}

function hideMenuColor(el){
	document.getElementById(el).style.backgroundColor="#909295";
}

function goTo(url){
	window.location = url;
}

function naytaTiedosto(tyyppi,id){
	window.open("http://www.renor.fi/tiedosto.php?tyyppi="+tyyppi+"&id="+id+"","ikkuna","width=550, height=500");
}

function showMenu2(el,top){
	$('#'+el+'').css('top', '-'+top+'px');	
	document.getElementById(el).style.display="block";
}

function hideMenu2(el){
	document.getElementById(el).style.display="none";
}

function showMenuColor2(el){
	document.getElementById(el).style.backgroundColor="#e3e6ea";
}

function hideMenuColor2(el){
	document.getElementById(el).style.backgroundColor="#ffffff";
}