
function DisplayImage(picURL,picWidth,picHeight){
	newWindow=window.open(picURL,'newWin','toolbar=no,width='+picWidth+',height='+picHeight)
	newWindow.document.write('<html><head><\/head><body background=\"'+picURL+'\" \/><\/body><\/html>')
	newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight)
	newWindow.focus()
}

function DisplayScrollImage(picURL,picWidth,picHeight){
	newWindow=window.open(picURL,'newWin','toolbar=no,resizable=no,scrollbars=yes,width='+picWidth+',height='+picHeight)
	newWindow.document.write('<html><head><\/head><body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 style=\"margin-top: 0px; margin-left: 0px; margin-bottom: 0px; margin-right: 0px;\"><img src=\"'+picURL+'\" \/><\/body><\/html>')
	newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight)
	newWindow.focus()
}
