/*
www.memorise.org
Metin Hassan
*/

function showpic(imgfile)
{
	ind = imgfile.indexOf("thumb_");
	picfilename = imgfile.substring(ind+6,imgfile.length);
	picfilepath = imgfile.substring(0,ind);

	html_string = "<HTML><HEAD></HEAD><BODY>";
	html_string += "<IMG SRC='"+picfilepath+picfilename+"'ONCLICK='history.back()'><BR>"
	html_string += "<INPUT TYPE='button' ONCLICK='history.back()' VALUE='Back'></BODY></HTML>";
	document.write(html_string);
}