/*Scroll white-dot background*/
function scroll_screen() 
{
	document.getElementById("").style.top=document.body.scrollTop;
}


/* Close divs */
function close_div (what_close) 
{
	document.getElementById(what_close).style.visibility = 'hidden';
}

