// JavaScript Document
function reHtmlCodeWay()
{
	var str = "";
	
	str += '<div style="height:208px;background:url(http://www.weboof.com/images/referrals/weekActBg.jpg) no-repeat;width:100%;position:relative;">';
	str += '<a href="http://www.weboof.com/" style="display:block;width:100%;height:208px;position:absolute;top:0px;left:0px;"></a>';
	str += '<div style="float:right;width:90%;text-align:right;padding:15px 25px;">';
	str += '<span style="font-family:Verdana;font-size:28px;font-weight:bold;color:red;">Weekend Sales! </span><br />';
	str += '<span style="font-family:Verdana;font-size:20px;color:red;">Enjoy <span style="font-family:Verdana;font-size:25px;font-weight:bold;color:red;">10%</span> additional discount in weekends.<br />More economical!</span>';
	str += '</div>';
	str += '</div>';
	
	document.write(str);
}
reHtmlCodeWay()