﻿function DisplayImage(URL, width, height, title) {
	var newWin = window.open(URL, 'newWin', 'toolbar=no, status=no, menubar=no, location=no, directories=no, width=' + width + ', height=' + height)
	newWin.document.write('<html><head><title>' + title + '<\/title><\/head><body style="background: url(' + URL + ') no-repeat;"><\/body><\/html>')
	newWin.resizeBy(width - newWin.document.body.clientWidth, height - newWin.document.body.clientHeight)
	newWin.focus();
}