function showDetails(name,imageStr,details) {
	image=new Image()
	image.src=imageStr;
	var windowprops = "toolbar=0,location=0,directories=0,status=0, " +
		"menubar=0,scrollbars=1,resizable=0,width="+500+
		",height="+450+"";
	MyWindow=window.open(null, "remote", windowprops);
	MyWindow.document.open();
	MyWindow.document.write("<title>"+name+"</title><body><center><font style='font:24pt'>"+name+
		"</font><br><table cellspacing='2' cellpadding='2' border='0'><tr><td>"+
		"<img src='"+imageStr+"' width=250 border='1' alt='"+name+"'></td><td>"+details+
		"</td></tr></table></body>");
	MyWindow.document.close();
	MyWindow.focus();
}

