var a = new Array(60);for (i=0;i<a.length;i++) {	a[i] = i;	if (a[i]<10) {		a[i] = "0" + a[i];		}	}function imgPopUp(URL) {	win=window.open('','','height=400,width=400,toolbar=0,statusbar=0,scrollbars=0,resizable=0');	win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>ODPA Gallery</title><link rel=stylesheet href="./inc/all.css" type="text/css"></head><body bgcolor="#F0F8FF" leftmargin="0" topmargin="0"><table cellspacing=0 cellpadding=0 border=0 width=100% height=100%><tr><td align=center><img src="'+URL+'" border=1><p><a href="#" onclick="window.close();return false;">Close Window</a></td></tr></table></body></html>');	win.document.close();	return true;	}function winPopUp(URL) {	window.open(URL,'','height=200,width=300,toolbar=0,statusbar=0scrollbars=0,resizable=0')	}