/*
	JavaScript (c) Huslik Verlag GmbH
*/

function init() {
	if (window.focus)
		if (document.forms)
			if (document.forms[0])
				if (document.forms[0].elements[0]) {
					for (var i = 0; i < document.forms[0].elements.length; i++) { 
						if (document.forms[0].elements[i].type == "text") {
							document.forms[0].elements[0].focus();
							exit;
						}
					}
				}
}

function gofield(form, field) {
	field = form + '[' + field + ']' ;
	if (window.focus)
		if (document.forms)
			if (document.forms[form])
				if (document.forms[form].elements[field])
					document.forms[form].elements[field].focus();
}

