function redir(str) {
 window.location = str;
}

function fsubmit(theform, theaction) {
 
 frm = document.getElementById(theform); 
 
 frm.action = theaction;
 frm.submit();

}


function form_publish(theform, theaction) {
 
 frm = document.getElementById(theform); 
 toc = document.getElementById('chk_agree_terms_publishing'); 
 
 
 
 if(toc.checked == false) {
  alert('Please check that you agree to terms of publishing.');
  return;
 }


 frm.action = theaction;
 frm.submit();

}



