// JavaScript Document
function popup_latestupdate() {
	newwindow2=window.open('','name','height=270,width=150');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>Latest Added Photos</title>');
	tmp.write('<style type="text/css">html, body {font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #313127; background-color:#FCFBF7; text-align:center;}</style>');
	tmp.write('</head><body><p><b>Notes About Latest Added Photos</b></p>');
	tmp.write('The latest photos list are based on File Creation Date/Time in UNIX timestamp format, and after thumbnail image created.<br />On Windows platform, see file \'Properties\' and \'File Created\' attribute.<br /><br />PHP Ref : filectime();');
	tmp.write('<p><a href="javascript:self.close()">Close</a></p>');
	tmp.write('</body></html>');
	tmp.close();
}