	// js_showIt():
	// Can be used to blend in and out items
	// id -> id of the item
	// status -> show (1), dont show (0)
	
	function js_showIt(id, status){
		if(status != 'undefined' && status != null){
			if(status == '1'){
				showIt = 1;
			} else {
				showIt = 0;
			}
		}
		if(showIt == '0'){
			display = "none";
		} else {
			display = "block";
		}
		
		if(document.getElementById(id) != null){
			document.getElementById(id).style.display = display;
		}
		
	}
