function tenant(id){
  document.form1.action= "../public/shoplist.php";
  document.form1.id.value= id;
  document.form1.mode.value= "tenant";
  document.form1.submit();
}

function category(id){
  document.form1.action= "../public/shoplist.php";
  document.form1.id.value= id;
  document.form1.mode.value= "category";
  document.form1.submit();
}

function court(){
  document.form1.action= "../public/shoplist.php";

  document.form1.mode.value= "court";
  document.form1.submit();
}

function courtdetail(id){
  document.form1.action= "../public/shoplist.php";
  document.form1.id.value= id;
  document.form1.mode.value= "court";
  document.form1.submit();
}

function sale(id){
  document.form1.action= "../public/sale.php";
  document.form1.id.value= id;

  document.form1.submit();
}

function event(){
  document.form1.action = "eventnews.php";
  document.form1.submit();
}
