//Launch the Virtual Tour

function launchTour(url)
{
    var newwindow=window.open('../viewTour.php?loc='+url,'info','height=500,width=600,scrollbars=yes');
    if (window.focus) {
         newwindow.focus()
    }
    return false;
}//end tour

function showComments()
{
   document.getElementById("outreview").style.display="block";
   document.getElementById("suclink").style.display="none";
   document.getElementById("huclink").style.display="inline";

} 
function hideComments()
{
   document.getElementById("outreview").style.display="none";
   document.getElementById("suclink").style.display="inline";
   document.getElementById("huclink").style.display="none";
}

function popup(url, width, height)
{
  var newwindow=window.open(url,'info','height='+height+',width='+width+',scrollbars=no');
    if (window.focus) {
         newwindow.focus()
    }
    return false; 

}

//Clears the box when comes into focus first time
function clearInput() {
   if (document.getElementById('search_input').value == 'Search') {
      document.getElementById('search_input').value = '';
   }   
}

//Clears the box when comes into focus first time
function checkInput() {
   if (document.getElementById('search_input').value == 'Search') {
      return false
   }
      if (document.getElementById('search_input').value == '') {
      return false
   }
}
