/** Another (black)pearl from Wayne a.k.a the linear king */
/** o...m...g **/
function subMenu(num,menuitem) {
subMenuLinks = Array(
'
',
'',
'');
$('submenucontent').innerHTML = subMenuLinks[num];}
function showHide(myitem,shbtn,myitema,myitemb,myitemc,myitemd,myiteme) {
if($(myitem).style.display=='none') {
$(myitem).style.display = '';
$(myitem).style.backgroundColor='#ddeeee'; $(myitem).className="highlighted_cell_notop";
$(myitema).style.backgroundColor='#ddeeee'; $(myitema).className="highlighted_cell_topleft";
$(myitemb).style.backgroundColor='#ddeeee'; $(myitemb).className="highlighted_cell_top";
$(myitemc).style.backgroundColor='#ddeeee'; $(myitemc).className="highlighted_cell_top";
$(myitemd).style.backgroundColor='#ddeeee'; $(myitemd).className="highlighted_cell_topright";
$(myiteme).style.backgroundColor='#ddeeee'; $(myiteme).className="highlighted_cell_top";
$(myitem).className = "highlighted_cell_notop";
$(shbtn).src = '../images/btn_less.gif';
} else {
$(myitem).style.display = 'none';
$(myitema).style.backgroundColor='#eff7f7'; $(myitema).className="rates_table";
$(myitemb).style.backgroundColor='#eff7f7'; $(myitemb).className="rates_table";
$(myitemc).style.backgroundColor='#eff7f7'; $(myitemc).className="rates_table";
$(myitemd).style.backgroundColor='#eff7f7'; $(myitemd).className="rates_table";
$(myiteme).style.backgroundColor='#eff7f7'; $(myiteme).className="rates_table";
$(shbtn).src = '../images/btn_details.gif';
}
}
// Show Photo on the Tour or Accom Product page
function ShowPhoto(imagesrc) {
$('myphoto').style.display = '';
$('myphoto').innerHTML='
';
}
function ShowMap() {
if($('mymap').style.display == '') {
$('mymap').style.display = 'none';
} else {
$('mymap').style.display = '';
}
}
function ShowSpecial() {
if(webspecial.style.display == '') {
$('webspecial').style.display = 'none';
} else {
$('webspecial').style.display = '';
}
}