function viewBigImage(name)
{
  var myWindow = window.open ("","","toolbar=no, directories=no, location=no, width=500, height=390, left=400, top=150, status=no, scrollbars=no, resize=no");
  myWindow.document.write ('<html><head><title>&nbsp;</title></head><body style="margin:0px"><a href="#" onClick="window.close();"><img src=images/large/'+name+' border=0></a></body></html>');
  myWindow.document.close();
}

// calendar functions
function ShowThumb(rooms, statdate, event)
{
  if (!rooms) return true;
  document.getElementById('HiddenInfo').innerHTML = '<div style="padding-left:10px; z-index:100" onmousedown="HideThumb()">'
  	+statdate+'<br/> <br/>' + rooms + ' room(s) available </div>';

  document.getElementById('ToolTip').style.top = event.clientY + document.body.scrollTop;
  document.getElementById('ToolTip').style.left = event.clientX + document.body.scrollLeft;
  document.getElementById('ToolTip').style.display = "block";
}

function HideThumb(){
  document.getElementById('ToolTip').style.display= "none";
}

function PrevMonth(m, y)
{
  document.getElementById('CurrMonth').value=m;
  document.getElementById('CurrYear').value=y;
  document.forms.beds.submit();
}
function NextMonth(m, y)
{
  document.getElementById('CurrMonth').value=m;
  document.getElementById('CurrYear').value=y;
  document.forms.beds.submit();
}
// end calendar functions