// JavaScript Document

function pres_show(id){
	if(document.getElementById(id).style.display!='block'){
		//$("table#"+"t"+id).removeClass("no_bottom");
		$("div#"+id).slideDown(300);
	}else{
		//$("table#"+"t"+id).addClass("no_bottom");
		$("div#"+id).slideUp(300);
	}
}


if(!document.getElementById)
   document.write('<style type="text/css"><!--\n'+
      '.dspcont{display:block;}\n'+
      '//--></style>');
//-->
