﻿// JScript File
var toggle = 1;
var textShow;
var textHide;
var imageShow;
var imageHide;
var initialHeight;

function InitialiseVars(textShow, textHide, imageShow, imageHide, initialHeight)
{
    this.textShow = textShow;
    this.textHide = textHide;
    this.imageShow = imageShow;
    this.imageHide = imageHide;
    this.initialHeight = initialHeight;
}

function toggleText()
{
    if (toggle == 1)
    {
        document.getElementById("accommodation_text").style.height = "auto";
        document.getElementById("lnkToggle").innerHTML = textHide + "<img src='" + imageHide + "' />";
    }
    else
    {
        document.getElementById("accommodation_text").style.height = initialHeight;
        document.getElementById("lnkToggle").innerHTML = textShow + "<img src='" + imageShow + "' />";
    }
    
    toggle = 1 - toggle;
}
