﻿// Change main image when clicking on thumbnail
function ChangeImage(imagename) {
   document.getElementById("imgLarge").src = imagename;}

function ChangeRentalImage(imagename) {
    document.getElementById("imgLarge_Rental").src = imagename;
}    
   
// Add To Shortlist
function doshortlist(propertyid)
{
    document.getElementById("ShortListDetail1_hidshortlist").value = propertyid;    
}

// validate the enquiry details
function valterms()
{ 
    if (document.getElementById("chkTerms").checked == true)
    {
        return true;
    }    
    else
    {
        alert("Please read and agree to our terms and conditions");
        return false;
    }
}
