// Written by Owen O Doherty 25/04/09
// Purpose - Shows the script for advanced Camper search

function toggleSearch()
{

   var txt='';
   var element = document.getElementById("search");
   if (element.innerHTML == "")
   { 
        txt = "<table border=0 width=100% >"+
                    "<tr>"+
                        "<td CLASS=rboxtextLeft><input type=checkbox name=toilet>Toilet</td>"+
                    "</tr>"+
                    "<tr>"+
                        "<td CLASS=rboxtextLeft><input type=checkbox name=shower>Shower</td>"+
                    "</tr>"+
                    "<tr>"+
                         "<td CLASS=rboxtextLeft><input type=checkbox name=stove>Stove</td>"+
                    "</tr></table>";
         element.innerHTML = txt;
   }
   else
   {
        element.innerHTML = "";
   }
}

// These Functions Use by Drop CSS Menu
function showYourRental()
{
   document.getElementById("popoutYourRental").style.display="block";
} 
function hideYourRental()
{
   document.getElementById("popoutYourRental").style.display="none";
}

function showCampervans()
{
   document.getElementById("popoutCampervans").style.display="block";
} 
function hideCampervans()
{
   document.getElementById("popoutCampervans").style.display="none";
}

function showHolidays()
{
   document.getElementById("popoutHolidays").style.display="block";
} 
function hideHolidays()
{
   document.getElementById("popoutHolidays").style.display="none";
}

function showSuppliers()
{
  // document.getElementById("fixSuppliers1").style.display="block";
   document.getElementById("popoutSuppliers").style.display="block";

} 
function hideSuppliers()
{
  // document.getElementById("fixSuppliers1").style.display="none";
   document.getElementById("popoutSuppliers").style.display="none";
}

function showAboutus()
{
   document.getElementById("popoutAboutus").style.display="block";
} 
function hideAboutus()
{
   document.getElementById("popoutAboutus").style.display="none";
}



// Start by hiding popouts - think this is mistake
// hideYourRental();

//Launch the Virtual Tou

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
