	function showElm(id){

		var elm = document.getElementById(id);
		if (!elm) return;
		if (elm.style.display=='none') {

			$('#'+id).show('slow');
			return;

		}

		$('#'+id).hide('slow');

	}

	function href(link){
		location.href=link;
	}


