<!--// ROLLOVERfunction newImage(arg) {	if (document.images) {		rslt = new Image();		rslt.src = arg;		return rslt;	}}function changeImages() {	if (document.images && (preloadFlag == true)) {		for (var i=0; i<changeImages.arguments.length; i+=2) {			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];		}	}}var preloadFlag = false;function preloadImages() {	if (document.images) {		top_properties_over = newImage("../images/top_properties_over.gif");		preloadFlag = true;	}}function formSubmit(x){document.getElementById(x).submit();}// POPUP WINDOWS// These defaults should be changed the way it best fits your sitevar _POPUP_FEATURES = 'height=350, width=350, scrollbars=0, resizable=1';function raw_popup(url, target, features) {    // pops up a window containing url optionally named target, optionally having features    if (isUndefined(features)) features = _POPUP_FEATURES;    if (isUndefined(target)) target   = '_blank';    var theWindow = window.open(url, target, features);    theWindow.focus();    return theWindow;}function link_popup(src, features) {    // to be used in an html event handler as in: <a href="..." onclick="link_popup(this,...)" ...    // pops up a window grabbing the url from the event source's href    return raw_popup(src.getAttribute('href'), src.getAttribute('target') || '_blank', features);}function isUndefined(v) {    var undef;    return v===undef;}// SLIDE SHOW// Initialize the variables// thisImg=1     first image to appear// imgCt=        number of images in slideshowthisImg=1imgCt=21function newSlide(direction) {    if (document.images) {        thisImg=thisImg + direction        if (thisImg <1) {            thisImg=imgCt        }        if (thisImg > imgCt){            thisImg=1        }        document.slider.src="../images/area/slide_" + thisImg + ".jpg"        }    }// -->