function document::onkeydown(){ 
  if (event.keyCode==13){
    if (document.all(event.srcElement.sourceIndex).type!='textarea'){
       window.event.returnValue=false;
       try{
         if (document.all(event.srcElement.sourceIndex).name==GF_enter_submit_elemento){
         	eval (GF_enter_submit_js); 
         }else{
                CursorAvanza();
         }
       }catch(e){
       		CursorAvanza();
       }
    }
  }
  return;
}

function CursorAvanza(){
	a=event.srcElement.sourceIndex;
	b=document.all.length-1;
	while ((a<b)||(b>0)){ 
		a=a+1;
		if ((document.all(a).type=='text')||(document.all(a).type=='select-one')||(document.all(a).type=='checkbox')||(document.all(a).type=='radio')||(document.all(a).type=='textarea')||(document.all(a).type=='password')) { 
			if (!(document.all(a).disabled)){	
				//puede haber problemas si hay capas ocultas
				try{
					document.all(a).focus();
					break;
				}catch(e){
				}
			}
		}
		if (a>=b)    
			a=1;
	}
}

