function goDir(){
	var url=top.frames[4].formDireccion.url.value;
	var target=top.frames[4].formDireccion.target.value;		
	if (url!=""){
		if ((target=="top")||(target=="parent")){
			alert(target+".location.href='"+url+"'");
			if (eval(target+".location.href='"+url+"'")){
				alert("enviado");
			}else{
				//alert("NO ENVIADO "); // + target + ".location.href="+url
			}
			
		}else{
			alert("no");
			if(eval("top.frames['" + target + "'].location.href='"+url+"'")){
				alert("enviado2");	
			}else{
				alert("NO ENVIADO2 " + "top.frames['" + target + "'].location.href="+url);
			}
		}
	}else{
		top.location.href="default.htm";
	
	
	}
}

function setDir(url,target){
//	alert(top.frames[4].formDireccion);
//	alert(parent.frames["frmdireccion"]);
	//alert(top.frames.frmdireccion.forms);
	
	top.frames[4].formDireccion.url.value=top.frames[4].formDireccion.act_url.value;
	top.frames[4].formDireccion.target.value=top.frames[4].formDireccion.act_target.value;
	
	top.frames[4].formDireccion.act_url.value=url;
	top.frames[4].formDireccion.act_target.value=target;	
}