﻿function bodystyle(imgurl) 
{
        document.body.style.backgroundImage = "url('" + imgurl + "')";
        document.body.style.backgroundPosition = "center top";
        document.body.style.backgroundRepeat = "repeat-x";
}
