function viewObj(x,y){
		if($('full1'+x).style.display=="none"){
			if($('fax'+x)){
				$('fax'+x).style.display="";
			}
			if($('email'+x)){
				$('email'+x).style.display="";
			}
			$('more'+x).style.display="none";
			$('full1'+x).style.display="";
			$('full2'+x).style.display="";
			$('full3'+x).style.display="";
			$('full4'+x).style.display="";
			
			var url = y + '?objid=' + x;
			// notice the use of a proxy to circumvent the Same Origin Policy.
			
			new Ajax.Request(url, {
			  method: 'get',
			  onLoading: function(transport) {
			    var notice = $('full4'+x);
			    notice.update('<td colspan="3" style="padding-top:15px;"><img src="/img/loading.gif" width="16" height="16" alt="Loading.."/></td>');
			  },
			  onSuccess: function(transport) {
			    var notice = $('full4'+x);
			    notice.update(transport.responseText);
			  }
			});
			
		}else{
			if($('fax'+x)){
				$('fax'+x).style.display="none";
			}
			if($('email'+x)){
				$('email'+x).style.display="none";
			}
			$('more'+x).style.display="";
			$('full1'+x).style.display="none";
			$('full2'+x).style.display="none";
			$('full3'+x).style.display="none";
			$('full4'+x).style.display="none";
		}
	}
