function moveCopyTextToFooter() {
    head = document.getElementById("copy_top");
    foot = document.getElementById("copy_bottom");
    foot.innerHTML = head.innerHTML;
    head.style.display = "none";
}

function focusSeccondInput() // not used anymore
{
  try
  {
    var ins = $('input:text:not([onclick])')
    if (ins.length > 0)
      ins[0].focus();
  }
  catch (e) {} // some ie bug
}

function focusTitleInput() {
  try {
	   if( $('#id_title') ){
	       $('#id_title').focus();
	       scrollTo(0,0);
	   };
  }
  catch (e) {} // some ie bug
}

