//Yes, I know this isn't an HTML file, but it has to be here to be in scope for the
//plugin to smarty it. Sorry.

function  populate_description(my_id)
{
	var product_div=document.getElementById('productdiv');
	
	var description = '';
	var name = '';
	var code = '';
			if(my_id == 2010128)
		{
			description = "FREE SHIPPING<br />FREE SAMPLES<br />
<br />
<img alt=\"\" src=\"/template/images/dwell_for_theshadestore.gif\" /> <br />
Our Roman Shade collection is second to none. Available in multiple styles, such as flat, relaxed or tulip, each custom Roman Shade is meticulously hand-crafted by our exclusive workroom. Add a privacy or blackout lining - at NO CHARGE.<br />
<strong>SHIPS IN&nbsp;10 DAYS!</strong>";
			name = "ROMAN SHADES";
			code = "roman-shades-dwell";
		}
			if(my_id == 2010144)
		{
			description = "FREE SHIPPING<br>FREE SAMPLES<br /><br />
<img src=\"/template/images/dwell_for_theshadestore.gif\" alt=\"\" /> <br />
Laminated Roller Shades offer a clean, stylish and functional accent to any room. Choose from our extensive DwellStudio fabric selection to create the perfect look with our completely custom, hand-crafted shades. Choose a privacy or blackout liner to control light. Optional valances and bottom bars give you even more ways to customize.<br />
<strong>SHIPS IN 7 DAYS!</strong>";
			name = "LAMINATED ROLLER SHADES";
			code = "laminated-roller-shades-dwell";
		}
			if(my_id == 2010145)
		{
			description = "FREE SHIPPING<br />FREE SAMPLES<br /><br />
<img src=\"/template/images/dwell_for_theshadestore.gif\" alt=\"\" /> <br />
Our wide selection of Drapery now includes DwellStudio fabric. Each custom Drapery is made to your exact specifications with our unmatched craftsmanship. Choose from 6 styles such as grommet, tailored pleat and inverted pleat and&nbsp;4 lining choices. We also offer a wide selection of beautiful drapery hardware.<br />
<strong>SHIPS IN 10 DAYS!</strong>";
			name = "DRAPERY";
			code = "drapery-dwell";
		}
			if(my_id == 2010146)
		{
			description = "<strong><font color=\"#E86D1F\">FREE SHIPPING<br/>FREE SAMPLES</font></strong><br />
<img src=\"/template/images/dwell_for_theshadestore.gif\" alt=\"\" /> <br />
A modern classic. For ages, hand-made Cornices have graced the windows of many of the world's finest interiors. The perfect complement to your custom window treatments, our clean lined, tailored Cornices are just the right finishing touch.<br />
<strong>SHIPS IN 10 DAYS!</strong>";
			name = "CORNICES";
			code = "cornices-dwell";
		}
				product_div.style.height = '240';
		product_div.innerHTML= "<span class='boldgrayheader'>" + name + "</span><span class='normalgraytext'>" + "<br>" + description + "<br><br><a href='http://www.theshadestore.com/category/dwell/" + code + "' alt='Cornices'><img src='http://www.theshadestore.com/template/images/select.gif' border='0' onmouseover=\"this.src='http://www.theshadestore.com/template/images/select_green.gif'\" onmouseout=\"this.src='http://www.theshadestore.com/template/images/select.gif'\"></a></span>";

}