function ads() {
var width = Math.floor((document.documentElement.clientWidth - 1000) / 2);


var left_div_width = 0;
var left_ad_str = '';
var right_ad_str = '';

if(width >= 355){
	left_div_width = '300px';
	left_ad_str = '';
	right_ad_str = '';

}else if(width >= 305){
	left_div_width = '300px';
	left_ad_str = '';
	right_ad_str = '';

}else if(width >= 165){
	left_div_width = '160px';
	left_ad_str = '';
	right_ad_str = '';

}else if(width >= 122){
	left_div_width = '120px';
	left_ad_str = '';
	right_ad_str = '';
}

//left div start
if(left_ad_str != ''){
	var left_div = document.createElement('div');
	left_div.setAttribute('id', 'left_sidebar_ad');

	left_div.style.position = 'fixed';
	left_div.style.textAlign = 'center';
	left_div.style.top = '0pt';
	left_div.style.left = '0pt';
	left_div.style.width = left_div_width;
	left_div.style.height = '100%';
	left_div.style.display = 'block';
// 	left_div.style.background = '#FFFFFF';

	left_div.innerHTML = left_ad_str;

	document.body.appendChild(left_div);
}
//left div end

//right div start
if(right_ad_str != ''){
	var right_div = document.createElement('div');
	right_div.setAttribute('id', 'right_sidebar_ad');

	right_div.style.position = 'fixed';
	right_div.style.textAlign = 'center';
	right_div.style.top = '0pt';
	right_div.style.right = '0pt';
	right_div.style.width = left_div_width;
	right_div.style.height = '100%';
	right_div.style.display = 'block';
	right_div.style.background = '#FFFFFF';

	right_div.innerHTML = right_ad_str;

	document.body.appendChild(right_div);
}
//right div end

//footer div start
	var footer_div = document.createElement('div');
	/*
	footer_div.setAttribute('id', 'footer_ad');
	footer_div.style.position = 'fixed';
	footer_div.style.textAlign = 'center';
	footer_div.style.bottom = '0pt';
	footer_div.style.left = '0pt';
	footer_div.style.width = '100%';
	footer_div.style.height = '65px';
	footer_div.style.display = 'block';
	footer_div.style.background = '#FFFFFF';
	footer_div.style.padding = '5px 0px 0px 0px';
	*/
	//footer_div.innerHTML = "<" + "script type=\"text/javascript\">var AdBrite_Title_Color = '439ed5';var AdBrite_Text_Color = '000000';var AdBrite_Background_Color = 'FFFFFF';var AdBrite_Border_Color = 'FFFFFF';var AdBrite_URL_Color = '008000';try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}</script><span style=\"white-space:nowrap;\"><script type=\"text/javascript\">document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src=\"http://ads.adbrite.com/mb/text_group.php?sid=1265622&zs=3436385f3630&ifr='+AdBrite_Iframe+'&ref='+AdBrite_Referrer+'\" type=\"text/javascript\">');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));</script></span>"+"<" + "script type=\"text/javascript\">var AdBrite_Title_Color = '439ed5';var AdBrite_Text_Color = '000000';var AdBrite_Background_Color = 'FFFFFF';var AdBrite_Border_Color = 'FFFFFF';var AdBrite_URL_Color = '008000';try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}</script><span style=\"white-space:nowrap;\"><script type=\"text/javascript\">document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src=\"http://ads.adbrite.com/mb/text_group.php?sid=1265622&zs=3436385f3630&ifr='+AdBrite_Iframe+'&ref='+AdBrite_Referrer+'\" type=\"text/javascript\">');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));</script></span>";

	document.body.appendChild(footer_div);
//footer div end
}