﻿

function hideIt(object){
	object.style.visibility="hidden";
}
function showIt(object){
	object.style.visibility="visible";
}


