var roomDetails =
[ 
    {'nodeID':'room22499004', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room22499003', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room22499002', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room22499001', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room58704', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has 2 single beds and an additional single pull-out bed that are very comfortable to ensure a good night\'s sleep. There is a stylish, contemporary desk for working on. Each room has an outside telephone line facility; just ask a member of our team if you wish to open your telephone line.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room58703', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has one double bed and an additional single pull-out bed that are very comfortable to ensure a good nights sleep. There is a stylish, contemporary desk for working on. Each room has an outside telephone line facility. Just ask a member of our team if you wish to open your telephone line.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room58702', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has 2 comfortable single beds to ensure a good night\'s sleep. There is a stylish, contemporary desk for working on. Each room has an outside telephone line facility; just ask a member of our team if you wish to open your telephone line.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room58281', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has a comfortable double bed to ensure a good night\'s sleep. There is a stylish, contemporary desk for working on. Each room has an outside telephone line facility; just ask a member of our team if you wish to open your telephone line.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false}
];

// Example of roomDetails contents:
//
// var roomDetails =
// [ 
//     {'nodeID':'room0', 'description':'room0 description', 'amenities':'room 0 amenities', 'clickTest':false},
//     {'nodeID':'room1', 'description':'room1 description', 'amenities':'room 1 amenities', 'clickTest':false},
// ];

function secondClicktest(roomID) {
    var theroom = roomDetails[roomID];

    if (theroom["clickTest"] == false)
    {
        document.getElementById(theroom["nodeID"]).innerHTML=theroom["description"]+" "+theroom["amenities"];
        return theroom["clickTest"] = true;
    } else
    {
        document.getElementById(theroom["nodeID"]).innerHTML="";
        return theroom["clickTest"] = false;
    }
} 

