
window.console.log("library");

function setFormFocus(theFormNumber, theInputNumber) {
	if (!document.getElementsByTagName("form").length > 0) return false;
	var theForms = document.getElementsByTagName("form");
	var theFormInputs = theForms[theFormNumber].getElementsByTagName("input");
	theFormInputs[theInputNumber].focus();
	return;
}

function clearFormInputDefaults() {
	if (!document.getElementsByTagName("form").length > 0) return false;
	if (!document.getElementById("theImageURLInput")) return false;
	var theImageURLInput = document.getElementById("theImageURLInput");
	var theImageURLInputDefaultValue = theImageURLInput.getAttribute("value");
	theImageURLInput.onclick = function() {
		if (theImageURLInput.value == theImageURLInputDefaultValue) {
			theImageURLInput.value = "";
		}
	}
	return;
}
