function Picture(PageTitle,Back,Alt,ImgSrc,Width,Height){

doc = window.open("","_top");
doc.document.writeln('<head>');
doc.document.writeln("<title>Adrians Tomcat - "+PageTitle+"</title>");
doc.document.writeln('</head>');
doc.document.writeln('<body link="yellow" vlink="yellow" alink="yellow">');
doc.document.writeln('<font color="#009900">');
doc.document.writeln('<h1>'+PageTitle+'</h1>');
doc.document.writeln('</font>');
doc.document.writeln('<img src="'+ImgSrc+'" alt="'+Alt+'" width="'+Width+'" height="'+Height+'">');
doc.document.writeln('<center><table width="90">');
doc.document.writeln('<tr height="40"><td bgcolor="#009900"><a style="text-decoration: none" href="JavaScript: history.back()"><font size="4"><center>Back</center></font></a></td></tr>');
doc.document.writeln('</table></center>');
doc.document.writeln('</body>');
doc.document.close();

}

