var badgediv = document.getElementById("exp_bp_hdiv");
var hotelurl = document.getElementById("exp_bp_hlink").href;
var hotelname = document.getElementById("exp_bp_hlink").innerHTML;

document.write('<style type="text/css"> '
	+ '#exp_bp_badgeDiv.bp-main {background:url(http://media.expedia.com/media/content/shared/images/badge/badge_only_2010.gif) no-repeat #fff; width:180px;height:150px;font:12px arial;line-height:16px;} '
	+ '#exp_bp_badgeDiv a {color:#41639b;text-decoration:none;} '
	+ '#exp_bp_badgeDiv a:hover {color:#41639b; text-decoration:none;}'
	+ '</style>');

badgediv.innerHTML = '<div id="exp_bp_badgeDiv" class="bp-main">'
	+ '<div style="padding:90px 8px 0 8px;text-align:center;">'
	+ '<a title="' + hotelname + '">' + hotelname + '</a></div></div>';
