function viewPicture(imgsrc,caption,w,h)
{
	var OpenWindow = window.open("", "_blank", "height="+h+",width="+w+",toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0,left=10,top=10");
	OpenWindow.document.write("<html>")
	OpenWindow.document.write("<head>")
	OpenWindow.document.write("<title>"+caption+"</title>")
	OpenWindow.document.write("</head>")
	OpenWindow.document.write("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>");
	OpenWindow.document.write("<body bgcolor=#FFFFFF topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0 marginheight=0 marginwidth=0>")
	OpenWindow.document.write("<img src=\"http://i2.photobucket.com/albums/y43/polyclaydolls/"+imgsrc+".jpg\" border=0 onclick=\"window.close();\" alt=\"click to close window\">")
	OpenWindow.document.write("</body>")
	OpenWindow.document.write("</html>")
}