function toggle_box(id) {
 var e = document.getElementById(id);
 if(e.style.display == 'none')
 e.style.display = 'block';
 else
 e.style.display = 'none';
}

function toggle_booking(id) {
 var e = document.getElementById(id);
 if(e.style.display == 'none')
 e.style.display = 'block';
 else
 e.style.display = 'none';
}

function popWindow(URL,LEFT,TOP,WIDTH,HEIGHT,SCROLLBARS,RESIZE)
{
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,left=" + LEFT + ",top=" + TOP + ",screenX=0,screenY=0,resizable=" + RESIZE + ",width=" + WIDTH + ",height=" + HEIGHT + "');");
}

function submit_confirm(txt) {
 var txt;
 var confirmSub = confirm(txt);
 if (confirmSub) { return true; } else { return false; }
}

function delete_confirm(txt,url) {
 var txt;
 var url;
 var confirmSub = confirm(txt);
 if (confirmSub) {
  window.location = url;
 } else {
  return false;
 }
}
