Features & Amenities
Colorado Contemporary Home with a Rustic Flair. This spacious estate home is located on a cul-de-sac lot with space galore. The distinctive, impressive architecture is evident immediately in the dramatic roof lines and the extensive use of outdoor space incorporated in so many areas of the home. Highlights on the main floor include: a state of the art kitchen complemented by beautiful custom crafted bookmark walnut veneer cabinetry with low voltage touch sensors for opening and closing; a greatroom featuring a wall of glass doors opening to an amazing outdoor entertainment area and incredible barrel alder ceilings which provide the perfect balance to the living space. The main floor master suite has a sitting area separated by a 2 sided fireplace, a private patio with amazing views, a luxurious master bath and an enormous walk-in closet with laundry hookups.
1.0) {
i = i * 0.01;
}
else {
loanRate = 100 * loanRate;
}
fixFloatFormat(loanRate);
fixFloatFormat(loanAmount);
interestRate = i / 12;
//periods = loanTerm * calcPeriod(form.period.value);
periods = loanTerm * form.period.value;
numerator = loanAmount * interestRate * Math.pow(1 + interestRate, periods);
denominator = Math.pow(1 + interestRate, periods) - 1;
//form.monthly.value = numerator / denominator;
//fixFloatFormat (form.monthly);
var holder = numerator / denominator;
var holder = formatDollars(holder);
document.getElementById("estpymtNumber").innerHTML = holder;
//fixFloatFormatSpan("estpymtNumber");
// set up the monthly payment label under price
if ( document.getElementById("mthpayment") !== null ) {
document.getElementById("mthpayment").innerHTML = document.getElementById("estpymtNumber").innerHTML;
}
return true;
} //end calcMonthlyPay
function calcMonthlyPay2() {
var loanRate = $("#calcInterestRate").val();
//var loanTerm = getLoanTerm(form.TermTypeAndRate[form.TermTypeAndRate.selectedIndex].value);
var loanTerm = $("#calcLoanLength").val();
if (checkField(loanRate,"interest") == false) {
return false;
}
if (checkField(loanTerm,"loan term") == false) {
return false;
}
if ( parseFloat($("#calcDownPayment").val().replace(/,/g,"")) > parseFloat($("#calcLoanAmount").val().replace(/,/g,"")) ) {
alert("The down payment cannot be greater than the loan amount.");
return false;
}
//var loanAmount = form.loan.value - form.down_payment.value;
var loanAmount = $("#calcLoanAmount").val().replace(/,/g,"") - $("#calcDownPayment").val().replace(/,/g,"");
//populate loan amount so we can get it for passing to bankrate
//document.getElementById("borrowamount").value = loanAmount;
var numerator, denominator, periods, interestRate = 0;
var i = loanRate;
if (i > 1.0) {
i = i * 0.01;
}
else {
loanRate = 100 * loanRate;
}
fixFloatFormat(loanRate);
fixFloatFormat(loanAmount);
interestRate = i / 12;
periods = loanTerm * 12;
numerator = loanAmount * interestRate * Math.pow(1 + interestRate, periods);
denominator = Math.pow(1 + interestRate, periods) - 1;
var holder = numerator / denominator;
var holder = formatDollars(holder);
$("#calcMonthlyPayment").html("$" + holder);
if (monthlyCSS)
{
$("#calcMonthlyPayment").wrap(" ").css("color","blue").css("font-size","16px").append(' View CO Rates ');
}
monthlyCSS = true;
return true;
}
jQuery(document).ready(function() {
popMortRates();
});
function popMortRates() {
var myurl = '/HomesCom/Include/AjaxNewMortgageRates.cfm';
var loanVal = parseInt(document.getElementById("borrowamount").value);
var modurl = 'zip_code=80023&state=CO&price='+loanVal;
jQuery.ajax({
url: myurl,
data: modurl,
success: function(msg)
{
jQuery("#mortgageRates").html(msg);
}
});
}
// -->Stop hiding
function processCalcDest() {
var destUrl = "http://www.bankrate.com/funnel/mortgages/mortgage-results.aspx?pid=p:hmc";
// determine what 20% down is
var twentyPct = 1895000 * 0.20;
var borrowamount = parseInt(document.getElementById("borrowamount").value);
var downpayment = parseInt(document.getElementById("downpymt").value);
// add the additional arguments to the bankrate url
destUrl += "&loan=" + borrowamount;
destUrl += "&market=44";
// jumbo is only based on the borrow amount
if (borrowamount > parseInt(417000)) {
destUrl += "&prods=4";
} else {
destUrl += "&prods=1";
}
// determine what to pass for the downpayment pct
if ( downpayment < parseInt(twentyPct) ) {
destUrl += "&perc=1";
} else {
destUrl += "&perc=0";
}
destUrl += "&ec_id=BR-Find-Lenders-Button";
// track the click
//linkObject( this , 'BR-Find-Lenders-Button');
// update the destination of the calc form to match what we've entered
//jQuery("#stateRatesLink").attr("href",destUrl);
jQuery("#destLink3").attr("href",destUrl);
jQuery("#destLink2").attr("href",destUrl);
jQuery("#destLink").attr("href",destUrl);
return true;
}
function processHomeAccount() {
var destUrl = "http://www.home-account.com/static/landingPage/10_TextLink.html?pid=8&utm_source=8&utm_campaign=Text3&property_value=&zip_code=80023";
// update the destination of the calc form to match what we've entered
jQuery("#stateRatesLink").attr("href",destUrl);
jQuery("#destLink3").attr("href",destUrl);
jQuery("#destLink2").attr("href",destUrl);
jQuery("#destLink").attr("href",destUrl);
return true;
}
//clears the input field when clicked
function clearInput(el) {if (el.defaultValue==el.value) el.value = "";}
//checks to see if value entered is numeric
function isNumeric(sText){
var ValidChars = "0123456789";
var IsNumber = true;var Char;
for (i = 0; i < sText.length && IsNumber == true; i++){
Char = sText.charAt(i);
if(ValidChars.indexOf(Char) == -1){
IsNumber = false;
}
}
return IsNumber;
}
//validates number entered in zip field
function validateZipCode(field,zipID) {
var zipField = document.getElementById(zipID);
if (field.length < 5 || field.length > 5 || field == "00000" || field == "99999") {
alert("Please enter a valid 5 digit zip code.");
zipField.focus();
return false;
}
if(!isNumeric(field)){
alert("Please enter a valid zip code.");
zipField.focus();
return false;
}
return true;
}
function noaction() {
}
Rates Provided by: