//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 == 2971965)
		{
			description = "FREE SHIPPING<br />FREE SAMPLES<br /><br />
<img src=\"/item-files/maharamlogo-1223325455.GIF\" alt=\"\" /> <br />
Roman Shades hand-made using Maharam textiles are a true example of couture design -- our expert craftsmanship combined with the finest materials in the world.&nbsp; Choose from six different Roman Shade styles and more than 70 exclusive materials.<br />
<strong>FROM $145 // SHIPS IN 15 DAYS!</strong>";
			name = "ROMAN SHADES";
			code = "maharam-roman";
		}
			if(my_id == 2971967)
		{
			description = "FREE SHIPPING<br />FREE SAMPLES<br /><br />
<img src=\"/item-files/maharamlogo-1223325455.GIF\" alt=\"\" /> <br />
Couture drapery, hand-sewn using Maharam fabrics, is the ultimate combination of old world craftsmanship with the finest textiles in the world. Choose from six distinct drapery styles and more than 70 exclusive materials.<br />
<strong>FROM $110 // SHIPS IN 15 DAYS!</strong>";
			name = "DRAPERY";
			code = "maharam-drapery";
		}
			if(my_id == 2971966)
		{
			description = "<strong><font color=\"#E86D1F\">FREE SHIPPING<br/>FREE SAMPLES</font></strong><br />
<img src=\"/item-files/maharamlogo-1223325455.GIF\" alt=\"\" /> <br />
Custom Cornices fabricated with Maharam textiles are hand-made masterpieces. Each Cornice is custom crafted with the greatest care and professionalism. Choose from 3 styles and over 70 exclusive fabrics.<br />
<strong>SHIPS IN 15 DAYS!</strong>";
			name = "CORNICES";
			code = "maharam-cornices";
		}
				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/maharam/" + 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>";

}