
	var theNewWindow;
	
	// Usage for popupWindow:
	//    newWindowURL - location of the file to be loaded into the new window. May be a relative or full URL (e.g, /viol_prev/index.html or http://www.center-school.org/viol_prev/index.html)
	//    newWindowName - window name of the new window, same function as the target attribute of the HTML <A> tag
	//    newWindowWidth - width of the newly created window in pixels
	//    newWindowHeight - height of the newly created window in pixels
	//    scrollbarsYSN - controls the display of scrollbars on the new window, may be 'yes' or 'no'
	
	function popupWindow (newWindowURL,newWindowName,newWindowWidth,newWindowHeight,scrollbarsYSN) {
		theNewWindow = window.open(newWindowURL,newWindowName,"width="+newWindowWidth+",height="+newWindowHeight+",scrollbars="+scrollbarsYSN+",resizable,left=20,top=100");
		theNewWindow.focus();
		return false;
	}


	function autotab(original,destination){
	if (original.getAttribute&&original.value.length==original.getAttribute("maxlength"))
	destination.focus()
	}

