// JavaScript Document



function disclaimer() {


var yn = confirm("Terms and Disclaimer:\r\n\r\nInformation on this website is subject to change without prior notice. The information presented throughout this web site is provided 'as is' and without warranty of any kind, expressed or implied, including (but not limited to) any implied warranties of merchantability, fitness for any particular purpose, or non-infringement.\r\n\r\nWhile the information provided is believed to be accurate, it may include errors or inaccuracies. RDS Group LLC provides no warranty, expressed or implied, as to the accuracy, reliability or completeness of furnished data.\r\n\r\nIf you agree with the Terms and Disclaimer, a Title Order Form will be presented to you. Please provide the requested information and mail or email the completed form along with a non-refundable deposit of $150. The title transction will start upon receiving the deposit. If the title transaction is closed with RDS Group LLC, the $150 deposit will be credited to you at closing.\r\n\r\nDo you agree with these terms?");

if (yn == true) {
  document.titleForm.submit();
  }
  else {
  	window.location = "default.htm";
	}    
}

//////////////////////////////////////////////////////////////////
// The preloadImages() function preloads all the "flipped" images
// so that when a user mouses over a navigation button,
// the rollover takes place immediately.  (If you do not
// preload images, the first time a user mouses over each
// navigation button the "mouseover" image must TRavel
// from the Web server, causing an unatTRactive delay.
///////////////////////////////////////////////////////////////////


function preloadImages() {

    // If there are images embedded in the document...

    if (document.images) {

       // Set the imgFiles variable equal to an array of all the
       // image files passed as arguments to the preloadImages() function.

       var imgFiles = preloadImages.arguments;

       // Create a new array called preloadArray

       var preloadArray = new Array();

       // For each image file sent as an argument to preloadImages()
       // (all 4 of them)...

       for (var i=0; i < imgFiles.length; i++) {

            // Create a new Image object in the preloadArray array
            // and associate it with a source file, thus loading
            // that image into memory.

            preloadArray[i] = new Image;
            preloadArray[i].src = imgFiles[i];
       }
    }
}

/////////////////////////////////////////////////////////
// The swap() function accepts two arguments - the
// internal name of an image, and an image file -
// and replaces whatever file was associated with the
// image name to the new image file.
/////////////////////////////////////////////////////////

function swap(id, newsrc) {
    var theImage = locateImage(id);
    if (theImage) {
        theImage.src = newsrc;
    }
}

/////////////////////////////////////////////////////////
// The locateImage() function accepts the name of an
// an image and returns the Image object associated
// with that name.
/////////////////////////////////////////////////////////

function locateImage(name) {
    var theImage = false;
    if (document.images) {
        theImage = document.images[name];
    }
    if (theImage) {
        return theImage;
    }
    return (false);
}