function renderFlash(src, width, height, features) {
	document.writeln('<embed wmode="transparent" src="' + src + '" quality="high" width="' + width + 
					 '" height="' + height + '" align="middle" allowscriptaccess="sameDomain" ' +
					 'type="application/x-shockwave-flash" ' + features + 
					 'pluginspage="http://www.macromedia.com/go/getflashplayer" />');
}

function OpenModalFromAnother(url, title, size) {
    MOOdalBox.open( // case matters
        url, // the link URL
        title, // the caption (link's title) - can be blank
        size // width and height of the box - can be left blank
        );
}
