//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; 

}