if (document.images)  {
var logoGif = new Image(175,158)
logoGif.src = "../pageImages/dhLogo.gif"
var printTextGif = new Image(175,158)
printTextGif.src = "../pageImages/printTextNew.gif"
}

function bannerOn()  {
if (document.images) {
	document.logo.src = printTextGif.src
	}
}

function bannerOff()  {
if (document.images) {
	document.logo.src = logoGif.src
	}
}

function setMsg(msg)  {
top.window.status = msg
return true
}