//
function hideReservation() {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById('reservation-popup-container').style.display = 'none';
}

else {
if (document.layers) { // Netscape 4
document.hideshow.display = 'none';
}

else { // IE 4
document.all.hideshow.style.display = 'none';
}
}
}

function showReservation() {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById('reservation-popup-container').style.display = 'block';
}

else {
if (document.layers) { // Netscape 4
document.hideshow.display = 'block';
}

else { // IE 4
document.all.hideshow.style.display = 'block';
}
}
}

//
function hideGiftCards() {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById('giftcard-popup-container').style.display = 'none';
}

else {
if (document.layers) { // Netscape 4
document.hideshow.display = 'none';
}

else { // IE 4
document.all.hideshow.style.display = 'none';
}
}
}

function showGiftCards() {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById('giftcard-popup-container').style.display = 'block';
}

else {
if (document.layers) { // Netscape 4
document.hideshow.display = 'block';
}

else { // IE 4
document.all.hideshow.style.display = 'block';
}
}
}