function showIt(state) {
	 	if (state == "show") {
			$('thisBlock').style.display="block";
		} else {
			$('thisBlock').style.display="none";
		}
	 }
	 
function getMyHTML(serverPage, objID) {
		new Ajax.Updater(objID, serverPage, { method: 'get' });
      }