function show_div(id)
{	
	document.getElementById(id).className='show';
}


function hide_div(id)
{	
	document.getElementById(id).className='hide';
}