
function search()
{
   //reg = /'/g;
  // sForm.keyword.value = sForm.keyword.value.replace(reg, "\\'");

}
function viewMap(addr)
{
  reg = /#/g;
  addr = addr.replace(reg, "");
  url = "map.php?addr="+addr;
  window.open(url,"","width=730,height=800,scrollbars=yes,resizable=yes");
}
function toPhone(id)
{
  url = "toPhone.php?id="+id;
  window.open(url,"","width=350,height=150,left=400,top=350");
}
function toMail(id)
{
  url = "toMail.php?id="+id;
  window.open(url,"","width=350,height=100,left=400,top=350");
}
function viewMenu(id,pages)
{
  url = "menu.php?id="+id+"&"+"pages="+pages;
  window.open(url,"","width=500,height=300,scrollbars=yes,resizable=yes");
}
function popContact()
{
  url = "contact.php";
  window.open(url,"","width=500,height=550,left=400,top=350");
}
function popWin(id)
{
  url = "postComment.php?id="+id;
  window.open(url,"","width=500,height=250,,scrollbars=yes,left=400,top=350");
}