function displayCooliris(div_id,gallery_id,width,height,flashvars){
	var feed = 'http://'+location.hostname+'/app/modules/d3galleries/xml/cooliris/cooliris_gallery.xml.php';
	var embed = '<object id="cooliris_gallery" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'">';
	embed += '<param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf" />';
    embed += '<param name="allowFullScreen" value="true" />';
    embed += '<param name="allowScriptAccess" value="always" />';
	embed += '<param name="flashvars" value="feed='+feed+'?gid='+gallery_id+flashvars+'" />';
	embed += '<embed type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf"';
	embed += 'flashvars="feed='+feed+'?gid='+gallery_id+flashvars+'"';
    embed += 'width="'+width+'"'; 
    embed += 'height="'+height+'"';
    embed += 'allowFullScreen="true"';
	embed += 'allowScriptAccess="always">';
    embed += '</embed>';

	document.getElementById(div_id).innerHTML = embed;
}
