
function dspimg(img, width, height)
{
	win = window.open('', 'image', 'width='+width+' height='+height+' scrollbars=yes,left=50,top=50');
	win.location.reload( true );
	win.document.write('<body bgcolor="Black">');
	win.document.write('<br>');
	win.document.write('<center>');
	win.document.write('<a href="javascript:window.print()">Send To Printer</a>');
	win.document.write('<br>');
	win.document.write('<br>');
	win.document.write('<img src="'+img+'">');
	win.document.write('<center>');
	win.document.close(); 
}
