//Applies a given watermark to the page
function waterMark(theImageURL)
{
	if (document.all||document.getElementById)
		document.body.style.background="url('" + theImageURL + "') white center no-repeat fixed";		
}