function show(path,title,xdim,ydim)
{
 win=window.open("about:blank","_blank","width="+xdim+",height="+ydim+",status=no,scrollbars=no");
 win.document.write("<html><head><title>"+title+"</title><link type='text/css' rel='stylesheet' href='astir_style.css'></head><body bgcolor='#9DCDE6' leftmargin='0' topmargin='0'><div align='center'>");
 win.document.write("<img border=\"0\" vspace='10' hspace='10' align='center' src="+path+" alt="+title+"></img>");
 win.document.write("<hr width='80%'><a href='JavaScript:void(0)' onclick='top.window.close()' class='a7'>Close this window</a>");
 win.document.write("</div></body></html>");
}
