|
So, here is what you do: 1. Copy the script below into a text editor like “Notepad”, and save it for future reference. (If you keep the "developed by" statement when you add the code to your pages, the back-link helps REindex with SEO. You do not have to keep this in the code for it to work if you choose not to. This VEcode is intended to be free to any agent or broker who wants to use it. Happy listing and selling!) 2. Replace the 1.35 with your own multiplier. (No negative numbers, but choose some number you decide on more than 0.00, that when multiplied by the assessed value gives an "estimate" of value in your town that you are comfortable with.) This value can be changed as often as your market conditions change. (Keep in mind that I don't think this is very accurate. Other sites are using one, so I created my own version.) 3. Change "My Estimate of Your Current Value is", to "Your Name or Company's Name Estimate of Your Current Value is". 4. Save the changes. 5. Copy and paste the code where you want it to appear, in the page you want the value estimator on. (You can see the Cape Group Value Estimator page here: http://www.capegroup.com/CapeGroupestimateofvaluecode.html - which does not use 1.35 by the way) 6. Tell people about it! Now you can be the local “Value Estimator” for buyers and sellers. <!-- Start REindex Value Estimator --> <script type="text/javascript"> <!-- function process(task){ var f1 = document.getElementById("field1"); var ans = document.getElementById("field3"); if(task == "multiply") ans.value = f1.value * 1.35; if(task == "reset"){ ans.value = ""; f1.value = ""; } } --> </script> <br />Enter Your Current Assessed Value <input type="text" id="field1" /> <br /> <br /><input type="button" value="Calculate my value please." onclick="process('multiply')" /> <br /> <br />My Estimate of Your Current Value is <input type="text" id="field3" /> <br /> <br /> <input type="button" value="Reset" onclick="process('reset')" /> <br /> <br /> <font size="-1">Developed for real estate professionals by the friendly people at<a href="http://www.REindex.com"> REindex.com, The Site Engine®.</a></font> <!-- End REindex Value Estimator --> |