function picture(pic, caption)	
{

document.open()
var content="";
content+="<html>\n<head>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"hats.css\" />\n</head>\n<body >\n";

content+="<table class=\"picture\" align='center' ><tr><td>";

content+="<h1>Hunter Art and Tile Studio</h1></td></tr><tr><td>"+caption +"<br />";

content+="<a href='javascript:history.back()'><img src='"+pic+"' alt='Click to go back'><br /><br />Back</a><br /><br />";

content+="</td></tr></table><br /><br /></body></html>"


document.write (content);

document.close()

}