<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Hollywood Hills Modern Home For Sale a Minute Away From Famed Sunset Strip : 8121 Gould Avenue</title>
<meta name="Description" content="Modern, Contemporary, home for sale, real estate and homes for sale in Hollywood Hills : Architectural Home For Sale in Los Angeles: 8121 Gould Avenue" />
<meta name="keywords" content="Hollywood Hills real estate,property web site,home for sale,CHRISTOPHE CHOO,Real Estate Group  Beverly Hills,find a home in Hollywood Hills,listingdomains.com,www.HollywoodHillsModernHomeForSale.com,community information,real estate news,maps,buyers guide,search for homes,mls,listing web site,modern home for sale,architectural home for sale,Hollywood hills home for sale,architectural home for sale los angeles,architectural home for sale hollywood hills,modern home for sale los angeles,modern home for sale los angeles,8121 Gould Avenue,Modern Architecture Home,Michael Parks,Hollywood hills home for sale,Christophe choo,Christophe Choo Real Estate Group,Laurel Canyon Home,sunset strip home,Contempory Style Home,Modern Architectural Home for sale,Beverly Hills listings,Hollywood hills listings,hollywood hills contemporary,hollywood hills contemporary home for sale,Los Angeles Contemporary Home For Sale,Contemporary Home Los Angeles,Laurel Canyon Home For Sale,sunset strip home for sale,Los Angeles modern home for sale,architectural home for sale hollywood hills,los angeles MLS,Micheal Parks desgin,sunset strip house,los angeles green house,los angeles green build,remodeled home,redone in 2010,Trulia.com,postlets.com,hotpads.com,oodle.com,modern design home,modern design house,hollywood hills home,hollywood hills house,Eco Home,modern home la,la modern home,micheal parks desgin,hollywood hills la,Hollywood Hills Modern Home For Sale,hollywood hills contemporary home for sale,Hollywood Hills Architectural Home For Sale,Hollywood hills home for sale,Home for sale hollywood hills,Sunset Strip Modern Home FOr Sale,Sunset Strip Contemporary Home For Sale,Sunset Strip Architectural Home For Sale" />
<link rel="stylesheet" type="text/css" href="ld_styles.css" />
<link rel="shortcut icon" href="http://www.propertiesonline.com/_media/graphics/favicons/classic.ico" />
<meta name="8121 Gould Avenue" content="Bordered by a stunning picturesque canopy of trees but situated just one minute away from the famed Sunset Blvd., 8121 Gould Ave stands as a testament to forward-thinking, sleek, open, airy and inviting modern architecture that accomplishes the rare " />

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="/_media/scripts/jquery/jquery.colorbox/colorbox.css" media="screen" />
<script type="text/javascript" src="/_media/scripts/jquery/jquery.colorbox/jquery.colorbox.js"></script>
<script type="text/javascript" src="ldnet.js"></script>

<style>
<!--
	.titletext { font-size:16pt;color:#FFFFFF}
	.addresstext { font-weight:bold;font-size:10pt;color:#C0C0C0}
	.largetextcolor { font-weight:bold;font-size:12pt;color:#000000}
	.featuresbartext { font-weight:bold;font-size:12pt;color:#C0C0C0}
	.pricetext { font-weight:bold;font-size:14pt;color:#FFFFFF}
	.infotext { font-weight:bold;font-size:8pt;color:#000000}
	.table1text { color:#C0C0C0}
	.table2text { color:#000000}
	.disclaimertabletext { color:#C0C0C0}
	A.bodylink { color:#FFFFFF }
	A.bodylink:hover { color:#FFFFCC }
	A.disclaimerlink { color:#FFFFFF }
	A.disclaimerlink:hover { color:#FFFFCC }
	A.officelink { color:#000000 }
	A.officelink:hover { color:#C0C0C0 }
	A.detailslink { color:#FFFFFF }
	A.detailslink:hover { color:#FFFFCC }
	A.vtlink { font-size:8pt; color:#9C0101;text-decoration:none }
	A.vtlink:hover { font-size:8pt; color:#C0C0C0;text-decoration:none }
	A.quicklink { font-size:8pt; color:#000000;text-decoration:none }
	A.quicklink:hover { font-size:8pt; color:#C0C0C0;text-decoration:none }
-->
</style>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin

//3-way slideshow- by Suzanne Arnold (http://jandr.com/, suzanne@mail.jandr.com)
//Script featured on JavaScript Kit (http://javascriptkit.com)
//Credit must stay intact
//Modified DRB 09.16.19  Added Formatting, and try/catch in onerotate

var Onerotate_delay = 4000; // delay in milliseconds (4000 = 4 secs)
Onecurrent = 0;

<!---SLIDE_SHOW_ARRAY--->
function Onenext() {
	if (document.Oneslideform.Oneslide[Onecurrent+1]) {
		document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent+1].value;
		document.Oneslideform.Oneslide.selectedIndex = ++Onecurrent;
	}
	else Onefirst();
}

function Oneprevious() {
	if (Onecurrent-1 >= 0) {
		document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent-1].value;
		document.Oneslideform.Oneslide.selectedIndex = --Onecurrent;
	}
	else Onelast();
}

function Onefirst() {
	Onecurrent = 0;
	document.images.Oneshow.src = document.Oneslideform.Oneslide[0].value;
	document.Oneslideform.Oneslide.selectedIndex = 0;
}

function Onelast() {
	Onecurrent = document.Oneslideform.Oneslide.length-1;
	document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent].value;
	document.Oneslideform.Oneslide.selectedIndex = Onecurrent;
}

function Oneap(text) {
	document.Oneslideform.Oneslidebutton.value = (text == "Stop") ? "Start" : "Stop";
	Onerotate();
}

function Onestart() {
	window.setTimeout("Onerotate()", Onerotate_delay);
}

function Onechange() {
	Onecurrent = document.Oneslideform.Oneslide.selectedIndex;
	document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent].value;
}

function Onerotate() {
	try {
		if (document.Oneslideform.Oneslidebutton.value == "Stop") {
			Onecurrent = (Onecurrent == document.Oneslideform.Oneslide.length-1) ? 0 : Onecurrent+1;
			if (document.images.Oneshow.filters)
			document.images.Oneshow.filters[0].apply()
			document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent].value;
			if (document.images.Oneshow.filters)
			document.images.Oneshow.filters[0].play()
			document.Oneslideform.Oneslide.selectedIndex = Onecurrent;
			if (document.images.Oneshow.filters)
			window.setTimeout("Onerotate()", Onerotate_delay + 2000);
			else
			window.setTimeout("Onerotate()", Onerotate_delay);
		}
	}
	catch(err){}
}
//  End -->
</SCRIPT>

<script language="JavaScript" src="popup.js" type="text/javascript"></script>
<script type="text/javascript" src="swfobject.js"></script></head>

<body bgcolor="#000033" style="margin:5px 1px 5px 1px;" onload="window.focus(); Onestart()">

<center>
<table border="0" cellpadding="2" cellspacing="0" width="738" bgcolor="#000033">
    <tr>
        <td>
            <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#000033">
<!---Header and title--->
                <tr><td align="center" bgcolor="#000033">
<img src="headers/christophe_choo_custom.jpg" border="0" /></td></tr>
                <tr>
                    <td class="titletext" width=100% align="center" bgcolor="#000033" style="padding:4px">
                        <b>Modern-Architectural Style Hollywood Hills Home SOLD by Christophe Choo in 2 weeks.</b>
                    </td>
                </tr>
<!---End Header and title--->
                <tr>
                    <td width="100%">
                        <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#000033" bordercolor="white">
                                        <tr>
<!---Left Side--->
                                            <td align="center" width="231" valign="top" bgcolor="#999999">
                                                <table align="center" border="0" cellpadding="2" cellspacing="1" width="100%" bgcolor="#999999">
<!---Translation--->
                                                    
<!---Price--->
                                                    <tr><td class="pricetext" align="center" bgcolor="#000033"><b>$1,200,000</b></td></tr>
                                                    <tr><td align="center"><a class="a2a_dd" href="http://www.addtoany.com/share_save?linkname=&amp;linkurl=http%3A%2F%2Fwww.HollywoodHillsModernHomeForSale.com%2Findex.asp"><img src="images/share_this_listing.gif" border="0" alt="Share/Save/Bookmark"/></a><script type="text/javascript">a2a_linkname=document.title;a2a_linkurl="http://www.HollywoodHillsModernHomeForSale.com/index.asp";a2a_onclick=1;</script><script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script></td></tr>
<!---Audio tour--->
                                                    <tr><td align="center"><table border="0" width="95%" height="50" id="table2" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" style="border: 1px solid #000000"><tr><td align="right"><span style="font-size: 12px;">Music:&nbsp;</span><td><embed src="/music/tinyplayer.swf" flashvars="filename=/music/Into_the_Blue.mp3&AutoLoad=Y&AutoPlay=Y&MusicLoop=Y" quality="high" bgcolor="white" width="76" height="25" name="tinymp3" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" /></td></tr>
</table></td></tr>
<!---Links--->
                                                    <tr><td align="center" valign="middle">
<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#000033"><tr><td align="center">
<table border="0" cellspacing="1" cellpadding="1" width="100%" bgcolor="#999999">
<tr><td width="100%"><font class="generaltextwhite"><b>&nbsp;Quick Links</b></font></td></tr>
<tr><td>
<table border="0" cellspacing="1" cellpadding="0" bgcolor="#999999" width="100%">
<!--QLSTART--><tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.HollywoodHillsModernHomeForSale.com" target="_blank"><b>Christophe Choo</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.ChristopheChoo.com" target="_blank"><b>www.ChristopheChoo.com</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=view&id=CHOC91405105703A_4111121911P&lang=','LD_window','YES',550,650)"><b>Schedule a Viewing</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=info&id=CHOC91405105703A_4111121911P&lang=','LD_window','YES',550,550)"><b>Request More Info</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.facebook.com/?ref=home#!/pages/Beverly-Hills-CA/Christophe-Choo-Real-Estate-Group/198739244387" target="_blank"><b>Follow Christophe on Facebook</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://twitter.com/ChristopheChoo" target="_blank"><b>Follow Christophe on Twitter</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=listings&id=CHOC91405105703A_4111121911P&lang=','LD_window','YES',550,650)"><b>FREE Listing Updates</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('http://www.mapquest.com/maps/map.adp?city=Los+Angeles&state=CA&address=8121+Gould+Avenue&zoom=8','Map','YES',800,600)">View Map</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('http://maps.google.com/maps?f=q&hl=en&q=8121%2BGould%2BAvenue,+Los%2BAngeles,+CA+90046&ie=UTF8&z=15&t=k&om=1','Map','YES',800,600)">Satellite Photo</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('http://losangelesca.areatour.com','Tour','YES',800,600)">Take an Area Tour</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('http://nces.ed.gov/globallocator/index.asp?search=1&State=&city=&zipcode=90046&miles=&itemname=&sortby=name&School=1&PrivSchool=1&Status=Loading+Libraries...&Records=16','Schools','YES',800,600)">Local Schools</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=mtg&id=CHOC91405105703A_4111121911P&lang=','LD_window','YES',550,600)">Calculate Your Payment</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('http://www.listingdomains.com/flash_files/show_flash.asp?ID=5','Buyers_Tips','YES',650,450)">Tips for Home Buyers</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=news&id=CHOC91405105703A_4111121911P','LD_window','YES',550,600)">Real Estate News</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.poltools.net/builder/flyer/pdfflyer.ashx?oid=78839&ot=101" target="_blank">Print Flyer</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=emaillisting&id=CHOC91405105703A_4111121911P','LD_window','YES',600,450)">Email This Listing</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink ql_tool_iframe" href="/ls/forms/feedback.aspx?oid=78839&ot=101" target="_blank">Feedback</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="https://www.propertiesonline.com/Clients/login/agents.aspx?pl=2" onMouseOver="window.status='Edit';return true;" onMouseOut="window.status='';return true;" target="_blank">Agent Login</a></td></tr></table>
</td></tr>
<!--QLEND--></table>
</td></tr>
</table></td></tr></table></td></tr>

<!---Open House--->
                                                    
<!---Agent--->
                                                    <tr><td align="center"><img src="http://www.listingdomains.com/system_data/Agent_doc_library/Agent1/CHOC91405105703A.jpg" width="125" border="0" /></td></tr>
<tr><td align="center" class="table2text"><span class="largetextcolor">CHRISTOPHE CHOO<br />Real Estate Group  Beverly Hills</span>
<br />310.777.6342 (Direct line)
<br /><span class="textnote">Christophe@ChristopheChoo.com</span>

<br /><br /><a class="bodylink cb_iframe" href="/ls/forms/ContactAgent.aspx?aid=1103&oid=78839&ot=101" rel="nofollow">Contact Us</a>
<br /><a class="bodylink" href="http://www.ChristopheChoo.com" target="_blank">Visit Our Website</a>
<br /><a class="bodylink" href="http://www.listingserver.com/HotSheet.aspx?aid=1103">View Our Other Listings</a>
<br /><a class="bodylink" href="javascript:popup('http://www.listingdomains.net/LD_window.asp?type=bio&id=CHOC91405105703A_4111121911P','LD_window','YES',550,460)">Christophe's Bio</a><br />
<!---Office--->
                                                    <tr><td align="center"><br /><table align="center" border="0" cellpadding="1" cellspacing="0" width="90%" bgcolor="#000033"><tr><td><table align="center" border="0" cellpadding="3" cellspacing="2" width="100%" bgcolor="#FFFFFF"><tr><td align="center"><img src="http://www.listingdomains.com/POLibrary/system_data/Logo_doc_library/Logo2/112209115230P.gif" /></td></tr><tr><td align="center"><a class="officelink" href="http://www.christophechoo.com" target="_blank"><b>Coldwell Banker Previews</b></a><br /><span class="smalltext">301 N Canon Drive, Ste. E<br />Beverly Hills, CA 90210</span><br /><b>310.777.6342</b></td></tr></table></td></tr></table></td></tr>
                                                </table>
                                            </td>
<!---End Left Side--->
<!---Right Side--->
                                            <td valign="top" bgcolor="#999999">
                                                <form name="Oneslideform" >
                                                <!-- XML = /builder/xml/listingphotos.ashx?oid=78839&ot=101 --><script type="text/javascript">swfobject.embedSWF("POSlideshow.swf", "altContent1", "507", "475", "9.0.0","", {data_src:"/builder/xml/listingphotos.ashx?oid%3D78839%26ot%3D101%26rel%3D1",bgcolor:"000033",imgcolor:"000033",view_timer:"2",transition_timer:"0.5",has_captions:"y",has_fullscreen:"y"}, {play: "true", loop: "true", menu: "true", quality: "high", scale: "showall", salign: "", wmode: "transparent", bgcolor: "#ffffff", allowScriptAccess: "sameDomain", allowFullScreen: "true", devicefont: "false"}, {id: "altContent1", name: "altContent1", align: "middle"});</script><div id="altContent1" class="row" align="left"><TABLE align="center" width="507" border="0" cellspacing="0" cellpadding="0" bordercolor="#000033">
<TR align="center" height="405"><TD bgcolor="#000033" ><div align="center">
<img src="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph153148952_04112011.jpg" name="Oneshow" style="filter:progid:DXImageTransform.Microsoft.Fade(duration=2)" border="0"></DIV></TD></TR>

<tr height="25">
	<td bgcolor="#000033" align="center">
		<table width="100%">
			<tr>
				<td align="center"><select name="Oneslide" onChange="Onechange();" size="1"><OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph153148952_04112011.jpg"  selected>Modern Hillside Home</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph153153139_04112011.jpg">Airy Open Floorplan</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph160128179_04112011.jpg">Bright Dinning Room</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph163718632_04112011.jpg">Inviting  Den</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph154330950_04112011.jpg">Peaceful Master Suite</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph154351760_04112011.jpg">Tranquil and Private</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph153150655_04112011.jpg">Gorgous Mountian Views</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph160134554_04112011.jpg">Clean Modern Design</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph161259523_04112011.jpg">Eco Wood Siding</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph163724679_04112011.jpg">Green Construction</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph161302476_04112011.jpg">Beautiful Window Box</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph163720663_04112011.jpg">Cozy Den</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph161303991_04112011.jpg">Commerical Wood Floors</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph163722694_04112011.jpg">Tree View</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph160128851_04112011.jpg">Custom Fireplace</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph160131069_04112011.jpg">Amazing Details</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph160132601_04112011.jpg">Calming Fireplace</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph160136273_04112011.jpg">Custom Modern Kitchen</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph153152061_04112011.jpg">Open Modern Kitchen</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph161317913_04112011.jpg">Open Kitchen</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph161314054_04112011.jpg">Commerical Wood Floors</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph162633257_04112011.jpg">Master Bedroom Windows</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph154333465_04112011.jpg">Remodeled Master Bath</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph162635741_04112011.jpg">Beautiful Master Bath</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph162637757_04112011.jpg">Beautiful Master Bath</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph161255460_04112011.jpg">Private Guest Room</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph162639741_04112011.jpg">Guest Bath</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph154347479_04112011.jpg">Large Outdoor Living Area</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph154349104_04112011.jpg">Custom Water Feature</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph153154702_04112011.jpg">Multiple Private Decks</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph153156842_04112011.jpg">Multiple Private Decks</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD114/CHOC91405105703A_4111121911P_ph162631273_04112011.jpg">Lower Deck Thru Railing</OPTION>
</select>
				</td>
				<td align="center" bgcolor="#000033" height="25"><DIV align="center">
<INPUT type=button onClick="Oneprevious();" value="<<" title="Previous" id=button1 name=button1>
<INPUT type=button name="Oneslidebutton" onClick="Oneap(this.value);" value="Stop" title="AutoPlay">
<INPUT type=button onClick="Onenext();" value=">>" title="Next" id=button1 name=button1>
</DIV>

				</td>
				<td align="center" bgcolor="#000033">
				</td>
			</tr>
		</table>
	</td>
</tr>
</TABLE></div>
                                                <table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033">
<tr><td class="featuresbartext"><b>Video Tour</b></td></tr></table><table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033"><tr><td class="table1text" align="center"><object width="560" height="349">
<param name="movie" value="http://www.youtube.com/v/mmQceGy637M?fs=1&amp;hl=en_US&amp;rel=0">
<param name="allowFullScreen" value="true">
<param name="allowscriptaccess" value="always"><embed src="http://www.youtube.com/v/mmQceGy637M?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="349" width="560"></object></td></tr></table>
                                                <table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033">
<tr><td class="addresstext" align="center" bgcolor="#000033">8121 Gould Avenue, Los Angeles, CA 90046<br /><br /></td></tr></table>
                                                <table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033">
<tr><td class="featuresbartext"><b>Features:</b></td></tr></table><table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033"><tr><td class="table1text"><ul>
<li>3 Bedrooms, 3 Baths</li><li>Serene location in the hills just a minute away from the Sunset Strip</li><li>Featured in over 100 design and Architecture Websites</li><li>This home offers glass walls, multiple balconies, state-of-the-art lighting and sound</li><li>Walnut, Armstrong commercial flooring</li><li>Parks House- Sustainable and/or Green Construction</li><li><a class="detailslink" href="javascript:popup('http://www.listingdomains.net/LD_detail.asp?type=details&id=CHOC91405105703A_4111121911P&lang=','LD_window','YES',750,500)">View Listing Details</a></li></ul></td></tr></table>
                                                
                                                
<table border="0" cellpadding="10" cellspacing="0" width="100%" bgcolor="#999999"><tr><td class="table2text"  align="left"><span class="largetextcolor">Remarks:</span><br /><p style="margin: 0in 0in 0.5in;"><span style="font-size: 14pt; font-family: calibri,sans-serif;">Bordered by a stunning picturesque canopy of trees&nbsp;and situated just one minute away from the famed Sunset Strip, this home stands as a testament to forward-thinking, sleek, open, airy and inviting modern architecture that accomplishes the rare feat of combining a minimalist aesthetic with both comfort&nbsp;and hip, understated luxury. With impeccable proportions&nbsp;and bold geometry, this innovative home was completely remodeled in a way that creates a feeling of warmth&nbsp;and beauty. Glass walls, multiple balconies, state-of-the-art lighting and sound, an outdoor entertainment area, waterfall, landscape design, two car covered parking&nbsp;and a private gated entry.</span></p>
<p style="margin: 0in 0in 0.5in;"><span style="font-size: 14pt; font-family: calibri,sans-serif;">Call Christophe Choo for a private showing: (310)777-6342</span></p>
<p style="margin: 0in 0in 0.5in;"><span style="font-size: 14pt; font-family: calibri,sans-serif;"><a href="http://www.ChristopheChoo.com">www.ChristopheChoo.com</a><br />
</span></p>
<p style="margin: 0in 0in 0.5in;"><span style="font-size: 14pt; font-family: calibri,sans-serif;"><br />
</span><a href="http://www.ChristopheChoo.com">
</a></p></td></tr></table>
                                                </form>
                                            </td>
<!---End Right Side--->
                                        </tr>
                        </table>
                    </td>
                </tr>
<!---Bottom--->
                <tr><td><table align="center" style="border-top: 2px solid #000033" cellpadding="4" cellspacing="0" width="100%" bgcolor="#FFFFFF">
<tr><td align="center" valign="middle" width="50%"><img src="http://www.listingdomains.com/images/Designation_logos/REALTOR.jpg" /></td>
<td align="center" valign="middle" width="50%"><img src="http://www.listingdomains.com/images/Designation_logos/MLS-REALTOR.jpg" /></td>
</table></td></tr>
                
<tr><td><table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033"><tr><td class="disclaimertabletext"><br /><img border="0" align="left" width="25" src="http://www.listingdomains.net/images/equalhouse.gif">
<span class="textnote">01027350<br /> <b>Coldwell Banker&reg;</b> and the <b>Coldwell Banker Logo</b> are registered trademarks licensed to Coldwell Banker Real Estate LLC and used by Properties Online, LLC  with permission. Coldwell Banker Residential Brokerage is owned and Operated by NRT. An Equal Opportunity Company.  Equal Housing Opportunity.  Not all products or services are available in all states. &copy;&nbsp;2012 Properties Online, LLC, Patent No. US 6,760,707. The above information including square footage is based on data received from the seller and/or from public sources. This information is deemed reliable but has not been independently verified and cannot be guaranteed. Prospective buyers are advised to verify information to their own satisfaction prior to purchase. By providing links to other sites Properties Online, LLC does not guarantee, approve or endorse the information or products available at these sites, nor does a link indicate any association with or endorsement by the linked site to the agent, brokerage, brand or  Properties Online, LLC. Powered by <a class="disclaimerlink" href="http://www.listingdomains.com/">ListingDomains.com</a>.</span></td></tr></table></td></tr>
            </table>
        </td>
    </tr>
</table>
</center>

<!--START GOOGLE ANALYTIC--><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-752021-2";urchinTracker("HollywoodHillsModernHomeForSale.com");</script><script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type="text/javascript">try{var pageTracker = _gat._getTracker("UA-6691336-5");pageTracker._trackPageview("HollywoodHillsModernHomeForSale.com");} catch(err) {}</script><!--END GOOGLE ANALYTIC--></body>
</html>

