function showSL()
{
	if (!document.getElementById("reseplaneraren_iframe")) return false;
	
	var iframeSL = document.getElementById("reseplaneraren_iframe");
	var icon = document.getElementById("reseplaneraren_icon");
	
	var style = iframeSL.style.display = "none"
	
	icon.onclick = function () {
		
		if(style == "none") {
			style = iframeSL.style.display = "block"
			icon.style.background = "url(/img/reseplanerare/bottom.gif)"
		}else {
			style = iframeSL.style.display = "none"
			icon.style.background = "none"
		}
		return false;
	}
}


window.onload = function() {
	showSL();
}