//Copyright RealGo, Inc. 2002 All Rights Reserved
function goBack(){
    history.go(-1);
}

function openHouseWindow(ListingID){
    ustring = 'http://www.coloproperty.com/reports/index.cfm?Action=ShowOpenHouseDetail&ListingID=' + ListingID;
    window.open(ustring,"recips","width=300,height=300",true);
}

function openInquiryWindow(MLSNumber){
    ustring = 'http://www.coloproperty.com/reports/index.cfm?Action=SendInquiry&MLSNumbers=' + MLSNumber;
    window.open(ustring,"recips","width=470,height=500",true);
}

function openEmailWindow(MLSNumber){
    ustring = 'http://www.coloproperty.com/reports/index.cfm?Action=EmailListing&MLSNumbers=' + MLSNumber;
    window.open(ustring,"recips","width=470,height=500",true);
}   

function printThis(){
    window.print();
}

