﻿function ShowandHide(node){
	if (node != null){
		var target = document.getElementById(node);
		StyleIt(target);
	}
	
	function StyleIt(target){
		if (target.className.indexOf("hide") == -1){
			target.className = "hide";
		}else{
			target.className = "show";
		}
	}
}