/**
 * JavaScript functions for PPAG webpages
 * @author	Dan Sweeney <webmaster@poplarpikeartsguild.org>
 */
// Set cursor to first input
function startform() {
	document.getElementById("input1").focus();
}
// Automatically tab focus for fixed-length inputs
function autotab(current, next) {
	if (current.getAttribute&&current.value.length==current.getAttribute("maxlength"))
	next.focus();
}