﻿// JScript File
function showPic(img)
{
	var sswindow;
	sswindow = window.open('','picwin','width=500,height=388,scrollbars=no,toolbar=no,resizable=no,location=no');
	sswindow.document.write('<body marginheight=0 marginwidth=0 topmargin=0 leftmargin=0><img src=' + img + ' border=0></body>');
	sswindow.document.close();
	sswindow.focus();
}
