/*
// ---------------------------------------------------------------------------------------------
// This module is part of ongoing modifications to the Spicerhaart source code.
//
// Author: Context Software Limited.
//
// Copyright (c) 2007. All Rights reserved by Context Software Limited. The license does not
// allow for the creation, amendment or distribution of copies of  this source code,
// without the express written permission of Context Software Limited.
// ---------------------------------------------------------------------------------------------
*/

﻿function CheckForm(oForm)
{   
    if (isInteger(oForm.txtBedrooms.value) == false)
    {
        alert("Please enter a numeric value for bedrooms");
        oForm.txtBedrooms.focus();
        return false;
    }

    if (CheckContactDetails(oForm) == false)
        return(false);

    return true;		
}


