function setBackground(size)
{
	var bgShadow = document.getElementById("bgShadow");
	if(size == "small") {
		bgShadow.style.backgroundImage = "url('../images/bgShadow_small.jpg')";
	}
	if(size == "big") {
		bgShadow.style.backgroundImage = "url('../images/bgShadow_big.jpg')";
	}
}

var reloadPage = function(){
	window.location ="/?f=home";
};


var printPage = function(){
    window.print();
};
