// JavaScript Document
/*
function for_unmobile()
{
	if( screen.width > 800)
	{
		document.getElementById("after_body").style.backgroundImage = 'url(../images/blocks/kopilka_banner_for_web.jpg)';
        //pos1 = screen.width/2 - 330;
        //pos2 = screen.width/2 + 145;
        pos1 = 0;
        pos2 = 170;
        document.getElementById("banner1").style.position= "absolute";
        document.getElementById("banner1").style.top = "276px";
        document.getElementById("banner1").style.left = pos1+"px";
        document.getElementById("banner1").style.display = "block";
        document.getElementById("banner2").style.position= "absolute";
        document.getElementById("banner2").style.top = "276px";
        document.getElementById("banner2").style.left = pos2+"px";
        document.getElementById("banner2").style.display = "block";
	}
}
*/
