function initBody(){
	;
}
function elementFocus(element){ //seleciona o foco no elemento do form
	if ( element.type == "text" || element.type == "radio" ){
		element.select();
		element.focus();	
	}
	if ( element.type == "select-one")
		element.focus();		
}//fim function elementFocus(element)

function pularEdit(n,t,target) { //pula altomaticamente para o proximo campo a ser preenchido
	if (n==t)
		elementFocus(target);
}
