function showpic( body, title, width, height ) {
	leftPosition = (screen.width) ? (screen.width-width)/2 : 10;
	topPosition = (screen.height) ? (screen.height-height)/2 : 10;
	_console = window.open("", "", "width="+width+",height="+height+",top="+topPosition+",left="+leftPosition+",toolbar=no,menubar=no,resizable=no,scrollbars=yes");
	 _console.document.open("text/html");
	_console.document.writeln("<html>");
	_console.document.writeln("<head>");
	_console.document.writeln("<title>" + title + "</title>");
//		_console.document.writeln('<link REL="STYLESHEET" TYPE="text/css" HREF="../../styles/byebs.css">');
	_console.document.writeln("</head>");
	_console.document.writeln('<body bgcolor="#fdf5e6" marginwidth=0 marginheight=0 leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0>');
	_console.document.writeln('<script>document.body.style.cursor="wait"</script>');
	_console.document.writeln('<table cellpadding=0 cellspacing=0 border=0 width="100%" height="100%"> \
<tr><td align="center" valign="middle" width="100%"><img src="' + body + '" border=0 alt="' + title + '"></td></tr></table>');
	_console.document.writeln;
	_console.document.writeln('<script>document.body.style.cursor="auto"</script>');
	_console.document.writeln("</body></html>");
	_console.focus();
}
