function WriteProductGallery(productId)
{
    var imageGallery = document.getElementById('ImageGallery');
    var xmlFile = window.location.protocol+"//"+window.location.hostname+"/product_xml.aspx?productId="+productId;
    imageGallery.innerHTML = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' id='player' codebase='"+window.location.protocol+"://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='500' height='600' id='flashobject'><param name='movie' value='/App_Flash/ProductImageGallery.swf' /><param name='wmode' value='transparent'/><param name='quality' value='high' /><param name='flashVars' value='xmlFile="+xmlFile+"' /><embed src='/App_Flash/ProductImageGallery.swf' quality='high' width='500' height='600' flashVars='xmlFile="+xmlFile+"' id='flashembed' allowscriptaccess='sameDomain' wmode='transparent' type='application/x-shockwave-flash' pluginspage='"+window.location.protocol+"://www.macromedia.com/go/getflashplayer' /></object>";
}
