function last_up()
{
	update = new Date(document.lastModified);
	theMonth = update.getMonth() + 1;
	theDate = update.getDate();
	theYear = update.getYear();
	document.write("Last Modified: " + theDate + "/" + theMonth + "/" + theYear);
}

function new_win(loc)
{
	var nw;
	window.open(loc, nw, 'toolbar=no,resizable=yes,scrollbars=yes,height=475,width=450');
}

function close_win()
{
      window.close();
}
