Modified by Jared at Jaredsdesigns.com for use in open-realty 2.0 same license from original developer still stands.

3/26/2005
601-01 template for Open-Realty 1x

By installing or using any portion of this template code you agree to the following Terms of Use:
You understand the 601-01 template is offered "as is" without any liability of any kind.
All copyright and designed by announcements and the http://601media.com link at the bottom of the template may not be removed or modified.
You agree not to cuss me if I forgot something.
!!WARNING!! YOU AGREE TO BACKUP ALL FILES AND DATABASES BEFORE ATTEMPTING TO INSTALL TEMPLATE MOD!


If you wish to have exclusive rights to use the 601-01 template design or to have a template designed for you contact mwmayo@601media.com or visit http://601media.com

If you like this template please make a donation to Open-Realty, visit http://open-realty.org/






TEMPLATE MOD INSTALLATION
=========================
To install the 601-01 template unzip 601-01.zip directly to your /template/ folder.

Edit your /include/common.php file to include the followings lines:
$config['template_path'] = $config['basepath'].'/template/601-01';
$config['template_url'] = $config['baseurl'].'/template/601-01';

comment out reference to the template you were using (add "//" to the beginning lines without the quotes)
example:
// $config['template_path'] = $config['basepath'].'/template/oldtemplate'; // leave off the trailing slashes
// $config['template_url'] = $config['baseurl'].'/template/oldtemplate'; // leave off the trailing slashes

edit the file named /template/601-01/config_menu.php to point to your Open-Realty installation directory.
ie:your website
example: http://myrealtywebsite.com   <-- leave off the trailing slash /

IMPORTANT - THE NEXT LINE INVOLVES BACKING UP 3 FILES
=====================================================
rename the following files in your root Open-Realty installation directory:
index.php  to  BKUP-index.php
listingview.php  to  BKUP-listingview.php
listing_browse.php  to  BKUP-listing_browse.php

copy or move the following files from the /template/601-01/ directory to your root Open-Realty installation directory:
index.php
listingview.php
listing_browse.php






Here is a list of the modifications made to these scripts to best of my knowledge
=================================================================================
If you have a proprietary index.php page and do not want to use my index page you might want to add the following lines to your index file to move featured listings from a left side table to a right side table:
<?php // 601 ADD-ON TO DISPLAY FEATURED LISTINGS AT TOP RIGHT SIDE
echo "<td valign=top>";
if($style['feature_listings_indexpage']=="yes"){
renderFeaturedListingsVertical(4);
}
?>

The index.php script has only been modified to display featured listings at top right side

The listing_browse.php script has been modified to correctly display listings within this templates confined 
area of 520 pixels.

The user_top.html includes Search Engine friendly titles and meta tags mods, script to popup virtual tours if you have that mod installed.

ADD-ON-STYLES TO THE STYLE.PHP SCRIPT
=====================================
$style['browse_listing_width'] = "520"; // listing browse listings panel width
$style['feature_listings_indexpage'] = "yes"; // display featured listings on index.html page

MENU.PHP
========
left navigational menu was stripped out of user_top.html and moved to menu.php script, separated for faster easier editing. I use a config_menu.php script to setup all the urls in the menu script.

MILDLY MODIFIED FUNCTIONS IN THE STYLE.PHP SCRIPT
=================================================
Featured Listings Vertical
Search Layouts

ADDED FUNCTIONS IN THE STYLE.PHP SCRIPT
=======================================
// GET LISTING TITLE FOR SEARCH ENG. FRIENDLY HTML PAGE TITLES AND META TAGS
function getMainListingTitle

// RENDER FEATURED LISTINGS VERSION2
function renderFeaturedListingsVertical2

// RENDER LISTINGS PAGE ELEMENTS WITH JAVA IMAGE SWAP
function renderListingsMainImageJava
function renderListingsImagesJava
function renderListingsImagesJavaRows

// RENDER VIRTUAL TOUR LINK
function rendervtourlink

I hope I got everything... enjoy!