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="'+div_id+'" name="cooliris_gallery" width="'+width+'" height="'+height+' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8"">';
	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 += '<param name="wmode" value="transparent" />';
	embed += '<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" 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 += ' wmode="transparent"';
	embed += ' allowScriptAccess="always">';
    	embed += '</embed>';
	embed += '</object>';

	//display the html
	//jQuery('#'+div_id).html(embed);
	document.getElementById(div_id).innerHTML = embed;
}

var toggleBoardPage = function(div) {
	var boardMap	= document.getElementById('boardMap')
	var boardForm	= document.getElementById('boardForm')
	if (div === boardMap) {
		boardMap.style.display = 'none';
		boardForm.style.display = 'block';
	} else if (div === boardForm) {
		boardMap.style.display = 'block';
		boardForm.style.display = 'none';
	}
}
