function DisplayImage(picURL,picWidth,picHeight)
{
	newWindow=window.open(picURL,'newWin','toolbar=no,width='+picWidth+',height='+picHeight);
	newWindow.document.write(
		'<html><head></head><body style="margin:0"><img src="'+picURL+'" /></body></html>'
	);
//	newWindow.document.write('<html><head><\/head><body><a href="javascript:window.print()"><IMG SRC="'+picURL+'" BORDER="0"><\/A><\/body><\/html>')
	newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight);
	newWindow.focus();
	newWindow.print();
}
