function showImage(src,width,height){

	nahledx = window.open('','DisplayWindow','width='+Number(width)+',height='+Number(height)+'status=no');

	nahledx.document.writeln('<html><head><title>Tarantule</title></head>');
	nahledx.document.writeln('<body topmargin="0" leftmargin="0">');
	nahledx.document.writeln('<p align="center"><a href="javascript:window.close()">');
 	nahledx.document.writeln('<img src="',src,'" border="0"></p>');
	nahledx.document.writeln('</body>');
	nahledx.document.writeln('</html>');
}

function showPage(src,width,height) {

  image = window.open(src,'','left=50, top=50, toolbar=no, width='+width+', height='+height+', resizable=yes, scrollbars=yes, status=yes');
  image.focus();
}

