
if (document.getElementById)
{
	document.writeln('<input type="hidden" name="cropped" id="cropped" value="1" disabled="disabled" />');
  window.archivo_name=document.getElementById("archivo").name;
}


function archivo_upload()
{
  var form=document.getElementById("frm_registrese");
  var old_action=form.action, old_target=form.target, p;
  document.getElementById("archivo").name=window.archivo_name; /* Upload the file! */
  form.action="crop/upload.php";
  document.getElementById("pleasewait").style.display="block";
  document.getElementById("progress").style.display="block";
  form.target="progress";
  form.submit();
  form.action=old_action;
  form.target=old_target;

  document.getElementById("cropped").disabled=false;
  document.getElementById("archivo").name=""; /* In the real form don't upload the file again */
}

function upload_finished()
{
  document.getElementById("pleasewait").style.display="none";
}
