
function setPageStyle() 
	{
	var currentURL = '' + window.location;
    var sBackground;
    var num = currentURL.search('auth/');
    if (num > 0) {
       sBackground = 'url(../images/stripes.gif)';
        }
    else {
        sBackground = 'url(images/stripes.gif)';
    }
	if ((screen.width>800) && (screen.height>600))
		{
		document.body.style.backgroundImage = sBackground;
		document.getElementById("container").style.borderColor = "#cccccc";
		document.getElementById("container").style.borderWidth = "6px";
		document.getElementById("container").style.borderStyle = "solid";
		document.getElementById("container").style.padding = "10px";
    
//		document.getElementById("container").style.width = "90%";
//		document.getElementById("homeright").style.width = (screen.width - 400);
	    }
	}

function removePageStyle() 
	{
	document.body.style.backgroundImage = "none";
	document.getElementById("container").style.border = "none";
	document.getElementById("container").style.padding = "0";
	}