function Picture(PageTitle,Back,Alt,ImgSrc,Width,Height){

doc = window.open("","_top");
doc.document.writeln('<head>');
doc.document.writeln("<title>Adrians Slotcar World - "+PageTitle+"</title>");
doc.document.writeln('</head>');
doc.document.writeln('<body link="#009900" vlink="#009900" alink="#009900">');
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('<P align="center"><A HREF="' + Back + '"><img src="Images/Back.JPG" alt=""></A> </P>');
doc.document.writeln('<P align="center"><a href="JavaScript: history.back()"><img src="Images/Back.JPG" alt=""></A> </P>');
doc.document.writeln('</body>');
doc.document.close();

}
