d = document;

function showFlashPiece(path, width, height){
    d.write('<embed src="' + path + '" height="' + height + '" width="' + width + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
}

function showProduct(img_src, description, pdflink, specs){
    
    d.getElementById('product_image').src = 'images/products/' + img_src;
	
	if(specs){
		description = description + '<br /><span class="specs">' + specs + '</span><br />';
	}
    
    if(pdflink){
		description = description + '<a href="files/' + pdflink + '.pdf" class="products_table">Download PDF &raquo;</a>';	
	}
	d.getElementById('product_desc').innerHTML = description;
    
}