function showSection(obj,title,type)
{
   url = obj ;
   document.title=title;
   if(type == "0")
   	{
	new Effect.Highlight($('_header'));
	$('_header').innerHTML = title;
	Effect.Fade($('_content'), {duration:0.3, afterFinish: function(){
				$('_content').innerHTML = '<div style="text-align:center;vertical-align:middle;height:200px;margin-top:200px;"></div>';
				$('_content').show();
				setTimeout(	function(){
						new Ajax.Updater($('_content'), url, { method:'get', onComplete:function(){
									$('_content').hide();
									Effect.BlindDown($('_content'));
								}
							});
					}, 50
				);
			}
		});
	 }
	else
	 {
	  Effect.Fade($('_contentfull'), {duration:0.3, afterFinish: function(){
				$('_contentfull').innerHTML = '<div style="text-align:center;vertical-align:middle;height:200px;margin-top:200px;"></div>';
				$('_contentfull').show();
				setTimeout(	function(){
						new Ajax.Updater($('_contentfull'), url, { method:'get', onComplete:function(){
									$('_contentfull').hide();
									Effect.BlindDown($('_contentfull'));
								}
							});
					}, 50
				);
			}
		});
	 }
		
}