/* Show divs */
function show_div (what_view) 
{
	document.getElementById(what_view).style.visibility = 'visible';

}

/* Close divs */
function close_div (what_close) 
{
	document.getElementById(what_close).style.visibility = 'hidden';

}

/* Hide horizontal scrolling */

