(
function(){
var title = typeof mbg_title == 'string' ? escape(mbg_title) : escape(document.title);
var url = typeof mbg_url == 'string' ? escape(mbg_url) : escape(document.location);
var query = 't=' + title;
var style = typeof mbg_style == 'string' ? mbg_style : 'full';
query += '&s=' + style;
query += typeof mbg_text == 'string' ? '&m=' + escape(mbg_text) : '';
query += typeof mbg_energy == 'boolean' ? mbg_energy == true ? '&c=true' : '' : '';
query += '&u=' + url;

var string = '<iframe src="http://localhost:8080/mindbodygreen/vote.jsp?' + query + '" scrolling="no" frameborder="0" ';
if(style=='full')
{
	var width = '42px';
	var height = '77px';
}
else if(style=='mini')
{
	var width = '17px';
	var height = '17px';
}
else if(style=='icon')
{
	var width = '42px';
	var height = '67px';
}
else
{
	var width = typeof mbg_width == 'string' ? mbg_width : '100'; width += 'px';
	var height = typeof mbg_height == 'string' ? mbg_height : '16'; width += 'px';
}
string += 'width="' + width + '" height="' + height + '"';
string += ' allowtransparency="true"></iframe>';
document.write(string);
}
)()
