
var cur_id = '';
var pre_id = '';

function showSlide( id )
{
	var content_slide = "contentslide_";
	var tab_id = "linktab_";
	cur_id = id;
	if(document.getElementById(content_slide+cur_id))
	{
		document.getElementById(content_slide+cur_id).style.display = 'block';
		document.getElementById(tab_id+cur_id).setAttribute('style','font-family:Gautami, Pothana2000, Arial;font-size:14px;color:#9A0003!important;background-color:#FFFFFF; width: auto;padding:0px;');
		
	}
	if(document.getElementById(content_slide+pre_id))
	{
		document.getElementById(content_slide+pre_id).style.display = 'none';
		document.getElementById(tab_id+pre_id).setAttribute('style','font-family:Gautami, Pothana2000, Arial;font-size:14px;font-weight:bold;color:#0066CC!important;background-color:#FFFFFF; width: auto;background-color:#FFFFFF;cursor:pointer;padding:0px;');
	}
		
	else
	{
		pre_id = '1';
		if( cur_id != pre_id )
		{
			document.getElementById(content_slide+pre_id).style.display = 'none';
			document.getElementById(tab_id+pre_id).setAttribute('style','font-family:Gautami, Pothana2000, Arial;font-size:14px;font-weight:bold;color:#0066CC!important;background-color:#FFFFFF; width: auto;background-color:#FFFFFF;cursor:pointer;padding:0px;');
		}
		
	}
		
	
	pre_id = cur_id;
	
	return;
}

// script for retweet starts

(function(){

window.RetweetJS = {
	// Your Bit.ly Username
	bitly_user: "retweetjs",

	// Your Bit.ly API Key
	// Found here: http://bit.ly/account
	bitly_key: "R_6287c92ecaf9efc6f39e4f33bdbf80b1",

	// The text to replace the links with
	//link_text: (/windows/i.test( navigator.userAgent) ? "&#9658;" : "&#9851;") +
	//	"&nbsp;Retweet",
        //
	link_text: "<img src='/img/tweet.jpg' border='0'/>&nbsp;<font style='vertical-align:top;'>RETWEET</font>",

	// What # to show (Use "clicks" for # of clicks or "none" for nothing)
	count_type: "none",

	// Tweet Prefix text
	// "RT @jeresig " would result in: "RT @jeresig Link Title http://bit.ly/asdf"
	prefix: "",

	// Style information
	styling: "a.retweet { font: 11px Helvetica,Arial; color: #000; text-decoration: none; border: 0px; }" +
		"a.retweet span { color:#0066CC; font-family:Gautami,Pothana2000,Arial;text-decoration:none;}"+
		"a.vert { display: block; text-align: center; font-size: 16px; float: left; margin: 4px; }" +
		"a.retweet strong.vert { display: block; margin-bottom: 4px; background: #F5F5F5; border: 1px solid #EEE; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 3px; }" +
		"a.retweet span.vert { display: block; font-size: 12px; margin-left: 0px; }"
};
		//"a.retweet span { color: #FFF; background: #94CC3D; margin-left: 2px; border: 1px solid #43A52A; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 3px; }" +

//////////////// No Need to Configure Below Here ////////////////

var loadCount = 1;

// Asynchronously load the Bit.ly JavaScript API
// If it hasn't been loaded already
if ( typeof BitlyClient === "undefined" ) {
	var head = document.getElementsByTagName("head")[0] ||
		document.documentElement;
	var script = document.createElement("script");
	script.src = "http://bit.ly/javascript-api.js?version=latest&login=" +
		RetweetJS.bitly_user + "&apiKey=" + RetweetJS.bitly_key;
	script.charSet = "utf-8";
	head.appendChild( script );

	var check = setInterval(function(){
		if ( typeof BitlyCB !== "undefined" ) {
			clearInterval( check );
			head.removeChild( script );
			loaded();
		}
	}, 10);

	loadCount = 0;
}

if ( document.addEventListener ) {
	document.addEventListener("DOMContentLoaded", loaded, false);

} else if ( window.attachEvent ) {
	window.attachEvent("onload", loaded);
}

function loaded(){
	// Need to wait for doc ready and js ready
	if ( ++loadCount < 2 ) {
		return;
	}

	var elems = [], urlElem = {}, hashURL = {};

	BitlyCB.shortenResponse = function(data) {
		for ( var url in data.results ) {
			var hash = data.results[url].userHash;
			hashURL[hash] = url;

			var elems = urlElem[ url ];

			for ( var i = 0; i < elems.length; i++ ) {
				elems[i].href += hash;
			}

			if ( RetweetJS.count_type === "clicks" ) {
				BitlyClient.stats(hash, 'BitlyCB.statsResponse');
			}
		}
	};

	BitlyCB.statsResponse = function(data) {
		var clicks = data.results.clicks, hash = data.results.userHash;
		var url = hashURL[ hash ], elems = urlElem[ url ];

		if ( clicks > 0 ) {
			for ( var i = 0; i < elems.length; i++ ) {
				var strong = document.createElement("strong");
				strong.appendChild( document.createTextNode( clicks + " " ) );
				elems[i].insertBefore(strong, elems[i].firstChild);

				if ( /(^|\s)vert(\s|$)/.test( elems[i].className ) ) {
					elems[i].firstChild.className = elems[i].lastChild.className = "vert";
				}
			}
		}

		hashURL[ hash ] = urlElem[ url ] = null;
	};

	if ( document.getElementsByClassName ) {
		elems = document.getElementsByClassName("retweet");
	} else {
		var tmp = document.getElementsByTagName("a");
		for ( var i = 0; i < tmp.length; i++ ) {
			if ( /(^|\s)retweet(\s|$)/.test( tmp[i].className ) ) {
				elems.push( tmp[i] );
			}
		}
	}

	if ( elems.length && RetweetJS.styling ) {
		var style = document.createElement("style");
		style.type = "text/css";

		try {
			style.appendChild( document.createTextNode( RetweetJS.styling ) );
		} catch (e) {
			if ( style.styleSheet ) {
				style.styleSheet.cssText = RetweetJS.styling;
			}
		}

		document.body.appendChild( style );
	}

	for ( var i = 0; i < elems.length; i++ ) {
		var elem = elems[i];

		if ( /(^|\s)self(\s|$)/.test( elem.className ) ) {
			elem.href = window.location;
			elem.title = document.title;
		}

		var origText = elem.title || elem.textContent || elem.innerText,
			href = elem.href;

		elem.innerHTML = "<span>" + RetweetJS.link_text + "</span>";
		elem.title = "";
		elem.href = "http://twitter.com/home?status=" +
			encodeURIComponent(RetweetJS.prefix + origText + " http://bit.ly/");

		if ( urlElem[ href ] ) {
			urlElem[ href ].push( elem );
		} else {
			urlElem[ href ] = [ elem ];
			BitlyClient.shorten(href, 'BitlyCB.shortenResponse');
		}
	}
	if(document.getElementById('retweet_holder'))
	{
                var elems = document.getElementById('retweet_holder');
                document.getElementById("retweet_holder2").href = elems.href;
	}


}

})();
//script for retweet ends



//script for vote article starts

if (document.images) 
{
	var img_up1 = new Image();
	img_up1.src = "/img/thumbs_up_new.jpg";

	var img_up2 = new Image();
	img_up2.src = "/img/thumbs_up_new1.jpg";

	var img_down1 = new Image();
	img_down1.src = "/img/thumbs_down_new.jpg";

	var img_down2 = new Image();
	img_down2.src = "/img/thumbs_down_new1.jpg";

}
//script for vote article ends


// Function to submit article vote (like/hate)
function submitArticleVote(article_id, vote)
{
	if(vote == undefined)
	{
		var vote = '';
	}
	else if(vote == 'like' )
	{
		if(document.getElementById('thumbs_up'))
		{
			document['thumbs_up'].src = img_up1.src;
		}
	}
	else if(vote == 'hate' )
	{
		if(document.getElementById('thumbs_down'))
		{
			document['thumbs_down'].src = img_down1.src;
		}
	}

       var pageURL = "/scripts/cms/submitArticleVote.php?article_id="+article_id+"&vote="+vote;
       var status = AjaxRequest.get(
               {
                       'url':pageURL
                       ,'onSuccess':function(req){
                                       xmlDoc = req.responseXML;
                                       if(xmlDoc.getElementsByTagName('like_count')[0].childNodes[0] != undefined)
                                       {
                                               var like_msg = xmlDoc.getElementsByTagName('like_count')[0].childNodes[0].nodeValue;
                                               document.getElementById('like_count').innerHTML = '('+like_msg+')';
					       if(document.getElementById('thumbs_up'))
					       {
					       document['thumbs_up'].src = img_up2.src;
					       }
                                       }

                                       if(xmlDoc.getElementsByTagName('hate_count')[0].childNodes[0] != undefined)
                                       {
                                               var hate_msg = xmlDoc.getElementsByTagName('hate_count')[0].childNodes[0].nodeValue;
                                               document.getElementById('hate_count').innerHTML = '('+hate_msg+')';
					       if(document.getElementById('thumbs_down'))
					       {
					       document['thumbs_down'].src = img_down2.src;
					       }
                                       }
                               }
                       ,'onError':function(req){ alert(req.statusText+'\nContents='+req.responseText); }
               }
       );
       return ;
} 
// Function to submit article vote ends

function activateTab(id, mod, no_tabs) {
    for (var i=1; i<=no_tabs; i++) {
        if  (p_o(mod+"_tc"+i)) {
            if (id == i) {
                p_o(mod+"_tc"+i).style.display = "block";
                p_o(mod+"_t"+i).className= "active";
            } else {
                p_o(mod+"_tc"+i).style.display = "none";
                p_o(mod+"_t"+i).className = "";
            }
        }
    }
}




function hiLiteRow(a,b){a.className=b}function activateTab(e,b,d){for(var a=1;a<=d;a++){if(p_o(b+"_tc"+a)){if(e==a){p_o(b+"_tc"+a).style.display="block";p_o(b+"_t"+a).className="active"}else{p_o(b+"_tc"+a).style.display="none";p_o(b+"_t"+a).className=""}}}}var toFcs=null;function p_o(a){return document.getElementById(a)}function showTab(did,cid,cback){if(did==null){return false}var div=p_o(did);var tab=p_o(cid);if(tab==null){return false}var tabs=div.childNodes;for(var i=0;i<tabs.length;i++){if(tabs[i].nodeType==1&&tabs[i]!=tab){tabs[i].className="dn"}}tab.className="di";if(cback!=null){eval(cback)}fcs()}function mkTab(e,g,b){var f=p_o(e);if(f==null){return}var a=false;var d=p_o(g);if(!d){d=document.createElement("div");d.setAttribute("id",g);a=true}d.className="dn";d.innerHTML=b;if(a){f.appendChild(d)}}function allLI(b){if(p_o(b)){if(tablisttag==null){tablisttag="li"}var a=p_o((b)).getElementsByTagName(tablisttag).length;while(a>0){if(p_o((b+a))){p_o((b+a)).className=""}if(p_o((b+"a"+a))){p_o((b+"a"+a)).className=""}a--}}}function selTab(a,b){if(a!=null){allLI(a);lidx=(a+b);liadx=(a+"a"+b)}if(a=="r"){p_o(lidx).className="curr"}else{if(a!=null){if(p_o(lidx)){p_o(lidx).className="over"}if(p_o(liadx)){if(dlscheme[b]){p_o(liadx).className="sel "+dlscheme[b]}else{p_o(liadx).className="sel"}}}}}function pGet(a,e,k,b,j,d,g){var h=b+e;toFcs=g;if((d!=null&&d)||showTab(b,h,j)==false){var f=(new Date()).getTime();a+="&uid="+f+"&cid="+h;if(k!=null){a+="&targ="+k}if(e!=null){a+="&tid="+e}if(j!=null){a+="&cback="+escape(j)}}else{selTab(k,e)}}function fcs(b){if(b==null){if(toFcs==null){return}b=toFcs}var a=p_o(b);toFcs=null;if(!a){return}if(a.getAttribute("tabIndex")==null){switch(a.nodeName.toLowerCase()){case"a":case"body":case"button":case"frame":case"iframe":case"img":case"input":case"object":case"select":case"textarea":break;default:a.setAttribute("tabIndex","-1");break}}if(a.focus){if(document.all){a.focus();a.focus()}else{setTimeout('p_o("'+a.id+'").focus()',0)}}}function ae(e,d,b){var a;if(a=e.addEventListener){a(d,b,0)}else{if(a=e.attachEvent){e["e"+d+b]=b;e[d+b]=function(){e["e"+d+b](window.event)};a("on"+d,e[d+b])}}}function omo(a){s_objectID=a}var colorscheme="";var dlscheme=new Array();var c=0;var tkr="";var dlini=false;var to=null;var pto=null;var dlnum=1;var nDls=1;var dlnext=new Array();var dldur=80;var dllast;var qfcs;var troflags=new Array();var dlpops=new Array();var pd;var psed=false;var fitab="";var pctrl_flag=1;function dlinit(){if(dlini){return}dlini=true;to=setTimeout("dlgo()",getdldur(dlnum));if(p_o("pt"+dlnum)){pt()}}function pt(){if(!pd){return}c++;if(c==pd.length){c=0}pto=setTimeout("pt()",3000)}function dlf(){if(pctrl_flag==1){p_o("dlpi").className="dlpi";pctrl_flag=0}else{psed=true}return dlgo("FWD")}function dlb(){return dlgo("BAK")}function dlgo(e,a){var f="dlC";dlini=true;dllast=dlnum;switch(e){case"NUM":if(dlnum==a){return false}clrT();dlnum=a;psed=true;break;case"BAK":clrT();dlnum--;psed=true;break;case"FWD":clrT();dlnum++;break;default:if(!psed){dlnum++}f=null;break}if(dlnum>nDls){dlnum=1}else{if(dlnum<1){dlnum=nDls}}if(nDls!=1){var d="";if(dlpops["dl"+dlnum]){d+="&dlitem="+dlpops["dl"+dlnum]}pGet("",dlnum,"dlt","dlC","dlc()",null,f)}if(p_o("dyn_sqrblock")){for(var b=1;b<=nDls;b++){if(p_o("dl_sqr"+b)){if(b==dlnum){p_o("dl_sqr"+b).style.background="#FFF"}else{p_o("dl_sqr"+b).style.background="#BABABA"}}}}setPse();return false}function dlc(){dlteaser();dlcnt();if(!psed){to=setTimeout("dlgo()",getdldur(dlnum))}}function dlcnt(){if(p_o("dlcount")){p_o("dlcount").innerHTML=dlnum+"/"+nDls}}function dlteaser(){if(p_o("dlnext")){if(dlnum==nDls){nextDL=1}else{nextDL=dlnum+1}if(dlnext[nextDL]){p_o("dlnext").innerHTML=dlnext[nextDL]}else{p_o("dlnext").innerHTML=""}}}function dlblr(){qfcs=0}function dlfcs(){qfcs=1}function dlp(){if(psed){psed=false;to=setTimeout("dlgo()",getdldur(dlnum))}else{psed=true;clrT()}setPse();return false}function setPse(){if(!p_o("dlpi")){return}if(psed){p_o("dlpi").className="dlpi_off"}else{p_o("dlpi").className="dlpi"}}function track(f,a){if(!(o=p_o(f))){return}if(a&&troflags[f]){return}var e=o.innerHTML;var b=e.split(",");if(a){troflags[f]=1}}function clrT(){if(to){clearTimeout(to);to=null}}ae(window,"load",dlinit);function getdldur(a){if(o=p_o("dlcyc"+a)){return(o.innerHTML*1500)}return dldur}function change_class_click(b,a){identity=document.getElementById(b);identity.className=a}function show_tab_click(b){var a=["","top_cont_click1","top_cont_click2","top_cont_click3","top_cont_click4","top_cont_click5","top_cont_click6","top_cont_click7"];for(i=1;i<a.length;i++){var d=document.getElementById(a[i]);change_class_click("ttab_nav_click"+i,"tab_main_inactive_click");d.style.display="none"}var d=document.getElementById("top_cont_click"+b);d.style.display="block";change_class_click("ttab_nav_click"+b,"tab_main_active_click")}function selecttext(){document.form1.email.select()}function OpenPopup(a){win=MM_openBrWindow(a,"winNotify","scrollbars=no,resizable=no,width=550,height=350")}function MM_openBrWindow(d,a,b){window.open(d,a,b)}
//relona code for displaying ads starts			
		document.writeln(decodeURIComponent("%3Cscript%20type%3D%22text%2Fjavascript%22%3Efunction%20relona_getClientWidth()%20%7B%0Avar%20myWidth%20%3D%200%0Aif(%20typeof(%20window.innerWidth%20)%20%3D%3D%20'number'%20)%20%7B%0A%2F%2FNon-IE%0AmyWidth%20%3D%20window.innerWidth%3B%0A%7D%20else%20if(%20document.documentElement%20%26%26%20(%20document.documentElement.clientWidth%20%7C%7C%20document.documentElement.clientHeight%20)%20)%20%7B%0A%2F%2FIE%206%2B%20in%20'standards%20compliant%20mode'%0AmyWidth%20%3D%20document.documentElement.clientWidth%3B%0A%7D%20else%20if(%20document.body%20%26%26%20(%20document.body.clientWidth%20%7C%7C%20document.body.clientHeight%20)%20)%20%7B%0A%2F%2FIE%204%20compatible%0AmyWidth%20%3D%20document.body.clientWidth%3B%0A%7D%0Areturn%20myWidth%3B%0A%7D%0Afunction%20relona_posy(obj)%0A%7B%0Avar%20curtop%20%3D%200%3B%0Atry%0A%7B%0Aif%20(obj.offsetParent)%20%0A%7B%0Ado%20%0A%7B%0Acurtop%20%2B%3D%20obj.offsetTop%3B%0A%7Dwhile%20(obj%20%3D%20obj.offsetParent)%3B%0Areturn%20curtop%3B%0A%7D%0A%7D%0Acatch(relona_e)%7B%7D%0Areturn%200%3B%0A%7D%0Afunction%20relona_posx(obj)%0A%7B%0Avar%20curleft%20%3D%200%3B%0Atry%0A%7B%0Aif%20(obj.offsetParent)%20%0A%7B%0Ado%20%0A%7B%0Acurleft%20%2B%3D%20obj.offsetLeft%3B%0A%7Dwhile%20(obj%20%3D%20obj.offsetParent)%3B%0Areturn%20curleft%3B%0A%7D%0A%7D%0Acatch(relona_e)%7B%7D%0A%0Areturn%200%3B%0A%7D%0A%0Avar%20v_relona_dim%3D0%3B%0Avar%20relona_top%3D0%0Avar%20relona_ea1_slot%3D%22%22%3B%0Avar%20relona_ea1_suffix%3D%22%22%3B%0Avar%20relona_offset%3D0%3B%0Avar%20relona_xoffset%3D0%3B%0Avar%20relona_ytop%3D0%3B%0Avar%20relona_leftid%3D%22%22%3B%0Avar%20relona_padding%3D0%3B%0Afunction%20relona_set_padding(pd)%0A%7B%0Arelona_padding%3Dpd%3B%0A%7D%0Afunction%20relona_set_top(tp)%0A%7B%0Arelona_top%3Dtp%3B%0A%7D%0Afunction%20relona_set_offset(os)%0A%7B%0Arelona_offset%3Dos%3B%0A%7D%0Afunction%20relona_area_begin(areaname%2Cendid)%0A%7B%0Avar%20psx%3B%0Avar%20psy%3B%0Av_relona_dim%3D0%3B%0Aif(!document.getElementById(areaname))return%3B%0Apsx%20%3D%20relona_posx(document.getElementById(areaname))%3B%0Apsy%20%3D%20relona_posy(document.getElementById(areaname))%3B%0Aif(relona_top%3Epsy)%20psy%20%3D%20relona_top%3B%0Av_relona_dim%20%3D%20relona_posy(document.getElementById(endid))%20-%20psy%20-%20relona_offset%3B%0Adocument.writeln(%22%3Cdiv%20id%3D%5C%22fill%22%2Bareaname%2B%22%5C%22%20style%3D%5C%22position%3Aabsolute%3Bleft%3A%22%2B(psx%2Brelona_padding)%2B%22px%3Btop%3A%22%2B(psy%2Brelona_padding)%2B%22px%3Bz-index%3A1%3B%5C%22%3E%22)%3B%0A%0A%7D%0Afunction%20relona_external_area_begin(areaname%2C%20leftid%2C%20xoffset%2C%20ytop%2C%20footerid%2C%20adwidth)%0A%7B%0Arelona_leftid%20%3D%20leftid%3B%0Arelona_xoffset%20%3D%20xoffset%3B%0Arelona_ytop%20%3D%20ytop%3B%0Avar%20psx%3B%0Avar%20psy%3B%0A%0Apsx%20%3D%20relona_posx(document.getElementById(leftid))%2Bxoffset%3B%0Apsy%20%3D%20ytop%3B%0Av_relona_dim%20%3D%20relona_posy(document.getElementById(footerid))%20-%20psy%20-%20relona_offset%3B%0Avar%20psw%20%3D%20relona_getClientWidth()%3B%0Aif(adwidth%20%2B%20psx%20%2B%2016%20%3E%3D%20psw%20%7C%7C%20psx%3C%3D0)%0A%7B%0Av_relona_dim%3D-1%3B%0Areturn%3B%0A%7D%0Adocument.writeln(%22%3Cdiv%20id%3D%5C%22fill%22%2Bareaname%2B%22%5C%22%20style%3D%5C%22position%3Aabsolute%3Bleft%3A%22%2Bpsx%2B%22px%3Btop%3A%22%2Bpsy%2B%22px%3Bz-index%3A1%3Bwidth%3A%22%2Badwidth%2B%22px%3B%5C%22%3E%22)%3B%0A%0A%7D%0Afunction%20relona_html_slot(slotheight%2Chtmlcode)%0A%7B%0Aif(v_relona_dim%3Eslotheight)%0A%7B%0Adocument.writeln(htmlcode)%3B%0Av_relona_dim%20%3D%20v_relona_dim-slotheight%3B%0Av_relona_dim%3D0%3B%0A%7D%0A%7D%0Afunction%20relona_gam_slot(slotheight%2Cslotname)%0A%7B%0Aif(v_relona_dim%3Eslotheight)%0A%7B%0AGA_googleFillSlot(slotname)%3B%0Av_relona_dim%20%3D%20v_relona_dim-slotheight%3B%0Av_relona_dim%3D0%3B%0A%7D%0A%7D%0Afunction%20relona_gam_slot_extended_A_begin(slotheight%2Cslotname%2Cprefixcode%2Csuffixcode)%0A%7B%0Aif(v_relona_dim%3Eslotheight)%0A%7B%0Av_relona_dim%20%3D%20v_relona_dim-slotheight%3B%0Av_relona_dim%3D0%3B%0Arelona_ea1_slot%3Dslotname%3B%0Arelona_ea1_suffix%3Dsuffixcode%3B%0Adocument.write(prefixcode)%3B%0A%7D%0Aelse%0A%7B%0Arelona_ea1_slot%3D%22%22%3B%0Arelona_ea1_suffix%3D%22%22%3B%0A%7D%0A%7D%0Afunction%20relona_gam_slot_extended_A_body()%0A%7B%0Aif(relona_ea1_slot.length%3E0)%0A%7B%0AGA_googleFillSlot(relona_ea1_slot)%3B%0A%7D%0A%7D%0Afunction%20relona_gam_slot_extended_A_end()%0A%7B%0Aif(relona_ea1_slot.length%3E0)%0A%7B%0Adocument.write(relona_ea1_suffix)%3B%0A%7D%0A%7D%0A%0Afunction%20relona_area_end(areaname)%0A%7B%0Av_relona_dim%3D0%3B%0Arelona_top%3D0%3B%0Arelona_offset%3D0%3B%0Arelona_ea1_slot%3D%22%22%3B%0Arelona_ea1_suffix%3D%22%22%3B%0A%0A%0Aif(!document.getElementById(areaname))%0A%7B%0Arelona_padding%3D0%3B%0Areturn%3B%0A%7D%0A%0Adocument.writeln(%22%3C%2Fdiv%3E%22)%3B%0Arelona_connect(areaname%2C%22fill%22%2Bareaname%2Crelona_padding)%3B%0Arelona_padding%3D0%3B%0A%7D%0Afunction%20relona_external_area_end(areaname)%0A%7B%0A%0A%0Adocument.writeln(%22%3C%2Fdiv%3E%22)%3B%0Arelona_external_connect(relona_leftid%2Crelona_xoffset%2Crelona_ytop%2C%22fill%22%2Bareaname)%3B%0A%0Arelona_leftid%3D%22%22%3B%0Arelona_xoffset%3D0%3B%0Arelona_ytop%3D0%3B%0Av_relona_dim%3D0%3B%0Arelona_offset%3D0%3B%0Arelona_ea1_slot%3D%22%22%3B%0Arelona_ea1_suffix%3D%22%22%3B%0A%7D%0Afunction%20relona_connect_2(outside%2Cinside%2Crpd)%0A%7B%0Atry%0A%7B%0Avar%20xcorr%3D0%3B%0Avar%20ycorr%3D0%3B%0A%0Avar%20insideobj%20%3D%20document.getElementById(inside)%3B%0Avar%20outsideobj%20%3D%20document.getElementById(outside)%3B%0A%0Aif(typeof%20insideobj.relonax%20!%3D%20%22undefined%22)%0A%7B%0Axcorr%20%3D%20insideobj.relonax%20-%20relona_posx(insideobj)%3B%0Aycorr%20%3D%20insideobj.relonay%20-%20relona_posy(insideobj)%3B%0A%7D%0Ainsideobj.relonax%20%3D%20(rpd%2Brelona_posx(outsideobj)%2Bxcorr)%3B%0Ainsideobj.relonay%20%3D%20(rpd%2Brelona_posy(outsideobj)%2Bycorr)%3B%0A%0Ainsideobj.style.left%20%3D%20insideobj.relonax%2B%22px%22%3B%0Ainsideobj.style.top%20%3D%20insideobj.relonay%2B%22px%22%3B%0A%0Aoutsideobj.style.height%20%3D%20(rpd%2Brpd%2Binsideobj.offsetHeight)%2B%22px%22%3B%0Aoutsideobj.style.width%20%3D%20(rpd%2Brpd%2Binsideobj.offsetWidth)%2B%22px%22%3B%0A%7D%0Acatch(relona_e)%0A%7B%7D%0A%7D%0Afunction%20relona_connect(outside%2Cinside%2Crpd)%0A%7B%0AsetInterval(%22relona_connect_2(%5C%22%22%2Boutside%2B%22%5C%22%2C%5C%22%22%2Binside%2B%22%5C%22%2C%22%2Brpd%2B%22)%3B%22%2C500)%3B%0A%7D%0Afunction%20relona_external_connect_2(leftid%2Cxoffset%2Cyoffset%2Cholder)%0A%7B%0Atry%0A%7B%0Avar%20xcorr%3D0%3B%0Avar%20ycorr%3D0%3B%0A%0Avar%20leftobj%20%3D%20document.getElementById(leftid)%3B%0Avar%20holderobj%20%3D%20document.getElementById(holder)%3B%0A%0Aif(typeof%20holderobj.relonax%20!%3D%20%22undefined%22)%0A%7B%0Axcorr%20%3D%20holderobj.relonax%20-%20relona_posx(holderobj)%3B%0Aycorr%20%3D%20holderobj.relonay%20-%20relona_posy(holderobj)%3B%0A%7D%0Aholderobj.relonax%20%3D%20(relona_posx(leftobj)%2Bxoffset%20%2B%20xcorr)%3B%0Aholderobj.relonay%20%3D%20yoffset%20%2B%20ycorr%3B%0A%0Aholderobj.style.left%20%3D%20holderobj.relonax%20%2B%20%22px%22%3B%0Aholderobj.style.top%20%3D%20holderobj.relonay%20%2B%20%22px%22%3B%0A%0Aif(relona_posx(leftobj)%2Bxoffset%20%3E%200)%0A%7B%0Aholderobj.style.display%3D%22block%22%3B%0A%7D%0Aelse%0A%7B%0Aholderobj.style.display%3D%22none%22%3B%0A%7D%0A%7D%0Acatch(relona_e)%7B%7D%0A%7D%0Afunction%20relona_external_connect(leftid%2Cxoffset%2Cyoffset%2Cholder)%0A%7B%0AsetInterval(%22relona_external_connect_2(%5C%22%22%2Bleftid%2B%22%5C%22%2C%22%2Bxoffset%2B%22%2C%22%2Byoffset%2B%22%2C%5C%22%22%2Bholder%2B%22%5C%22)%3B%22%2C500)%3B%0A%7D%0A%0Afunction%20relona_nop()%0A%7B%0A%7D%0Awindow.onerror%20%3D%20relona_nop%3B%3C%2Fscript%3E"));

//relona code for displaying ads ends		

//relona additional script for ads above 1024 res//

document.writeln(decodeURIComponent("%3Cscript%20type%3D%22text%2Fjavascript%22%3Efunction%20relona_scrolly()%0A%7B%0Avar%20retval%3D0%3B%0Aif%20(document.documentElement)%0A%7B%0Aretval%20%3D%20document.documentElement.scrollTop%3B%0A%7D%0Aelse%20if%20(document.body)%0A%7B%0Aretval%20%3D%20document.body.scrollTop%3B%0A%7D%0Aif(retval%3D%3D0%20%26%26%20typeof%20window.pageYOffset%20!%3D%20%22undefined%22)retval%20%3D%20window.pageYOffset%3B%0Areturn%20retval%3B%0A%7D%0A%0Avar%20relona_ml_name%3D%22%22%3B%0Avar%20relona_ml_array%3D%5B%5D%3B%0Avar%20relona_initialobj%3B%0Avar%20relona_insideinitobj%3B%0Avar%20relona_zset%3D100%3B%0Afunction%20relona_multilocation_begin(areaname%2Cinitialid)%0A%7B%0Arelona_insideinitobj%20%3D%20document.getElementById(areaname)%3B%0Arelona_initialobj%20%3D%20document.getElementById(initialid)%3B%0Aif(relona_initialobj!%3Dnull)%0A%7B%0Aif(relona_insideinitobj%3D%3Dnull)%0A%7B%0Avar%20initx%20%3D%20relona_posx(relona_initialobj)%3B%0Avar%20inity%20%3D%20relona_posy(relona_initialobj)%3B%0Arelona_ml_name%20%3D%20areaname%3B%0Adocument.writeln(%22%3C%22%2B%22div%20id%3D%5C%22ml%22%2Brelona_ml_name%2B%22%5C%22%20style%3D%5C%22position%3Aabsolute%3B%20left%3A%22%2Binitx%2B%22px%3B%20top%3A%22%2Binity%2B%22px%3B%20z-index%3A100%3B%5C%22%3E%22)%3B%0Avar%20loclist%20%3D%20%5B%5D%3B%0Aloclist%5B0%5D%20%3D%20initialid%3B%0Arelona_ml_array%5B%22ml%22%2Bareaname%5D%3Dloclist%3B%0A%7D%0Aelse%0A%7B%0Avar%20initx%20%3D%20relona_posx(relona_initialobj)%3B%0Avar%20inity%20%3D%20relona_posy(relona_initialobj)%3B%0Arelona_ml_name%20%3D%20areaname%3B%0Arelona_initialobj.style.position%3D%22relative%22%3B%0Arelona_initialobj.style.zIndex%3Drelona_zset%3B%0Arelona_insideinitobj.style.left%3D%220px%22%3B%0Arelona_insideinitobj.style.top%3D%220px%22%3B%0Arelona_insideinitobj.style.position%3D%22absolute%22%3B%0Arelona_insideinitobj.style.zIndex%3Drelona_zset%3B%0Arelona_insideinitobj.setposx%3D0%3B%0Arelona_insideinitobj.setposy%3D0%3B%0Avar%20loclist%20%3D%20%5B%5D%3B%0Aloclist%5B0%5D%20%3D%20initialid%3B%0Arelona_ml_array%5Bareaname%5D%3Dloclist%3B%0A%7D%0A%7D%0A%7D%0Afunction%20relona_ml_add(locid)%0A%7B%0Aif(relona_initialobj!%3Dnull)%0A%7B%0Aif(relona_insideinitobj%3D%3Dnull)%0Arelona_ml_array%5B%22ml%22%2Brelona_ml_name%5D%5Brelona_ml_array%5B%22ml%22%2Brelona_ml_name%5D.length%5D%20%3D%20locid%3B%0Aelse%0Arelona_ml_array%5Brelona_ml_name%5D%5Brelona_ml_array%5Brelona_ml_name%5D.length%5D%20%3D%20locid%3B%0A%7D%0A%7D%0Afunction%20relona_ml_item_html(htmlcode)%0A%7B%0Aif(relona_initialobj!%3Dnull)document.writeln(htmlcode)%3B%0A%7D%0Afunction%20relona_ml_item_script(jscode)%0A%7B%0Aif(relona_initialobj!%3Dnull)document.writeln(%22%3C%22%2B%22script%20type%3D%5C%22text%2Fjavascript%5C%22%3E%22%2Bjscode%2B%22%3C%22%2B%22%2Fscript%3E%22)%3B%0A%7D%0Afunction%20relona_multilocation_end(areaname)%0A%7B%0Aif(relona_initialobj!%3Dnull)%0A%7B%0Aif(relona_insideinitobj%3D%3Dnull)%0A%7B%0Adocument.writeln(%22%3C%22%2B%22%2Fdiv%3E%22)%3B%0AsetInterval(%22relona_ml_mon(%5C%22ml%22%2Brelona_ml_name%2B%22%5C%22)%3B%22%2C100)%3B%0A%7D%0Aelse%0A%7B%0AsetInterval(%22relona_ml_mon(%5C%22%22%2Brelona_ml_name%2B%22%5C%22)%3B%22%2C100)%3B%0A%7D%0A%7D%0A%7D%0Afunction%20relona_ml_mon(areaname)%0A%7B%0Avar%20adobj%20%3D%20document.getElementById(areaname)%3B%0Avar%20loclist%20%3D%20relona_ml_array%5Bareaname%5D%3B%0Avar%20len%20%3D%20loclist.length%3B%0Avar%20finalloc%20%3D%20loclist%5B0%5D%3B%0Avar%20i%3B%0Avar%20maxdiff%3D10000%3B%0Avar%20rsy%20%3D%20relona_scrolly()%3B%0Avar%20psy%3B%0Avar%20tobj%3B%0Avar%20dispy%20%3D%20adobj.clientHeight%3B%0Aif((typeof%20dispy)%20%3D%3D%20%22undefined%22)dispy%3D0%3B%0Afor(i%3D0%3Bi%3Clen%3Bi%2B%2B)%0A%7B%0Atobj%20%3D%20document.getElementById(loclist%5Bi%5D)%3B%0Aif(tobj%3D%3Dnull)continue%3B%0Apsy%20%3D%20relona_posy(tobj)%20%2B%20dispy%3B%0Aif(psy%3Ersy)%0A%7B%0Aif(maxdiff%3Epsy-rsy)%0A%7B%0Amaxdiff%20%3D%20psy-rsy%3B%0Afinalloc%20%3D%20loclist%5Bi%5D%3B%0A%7D%0A%7D%0A%7D%0A%0Avar%20targetobj%20%3D%20document.getElementById(finalloc)%3B%0Avar%20targetx%20%3D%20relona_posx(targetobj)%3B%0Avar%20targety%20%3D%20relona_posy(targetobj)%3B%0A%0A%0Aif((typeof%20adobj.setposx)%3D%3D%22undefined%22)%0A%7B%0Aadobj.setposx%20%3D%20relona_posx(document.getElementById(loclist%5B0%5D))%3B%0Aadobj.setposy%20%3D%20relona_posy(document.getElementById(loclist%5B0%5D))%3B%0A%7D%0A%0Avar%20corrx%20%3D%20adobj.setposx%20-%20relona_posx(adobj)%3B%0Avar%20corry%20%3D%20adobj.setposy%20-%20relona_posy(adobj)%3B%0A%0Aadobj.style.left%20%3D%20(corrx%20%2B%20targetx)%2B%22px%22%3B%0Aadobj.style.top%20%3D%20(corry%20%2B%20targety)%2B%22px%22%3B%0Aadobj.setposx%20%3D%20(corrx%20%2B%20targetx)%3B%0Aadobj.setposy%20%3D%20(corry%20%2B%20targety)%3B%0A%7D%0Afunction%20alert()%0A%7B%7D%3C%2Fscript%3E"));
//relona additional script for ads above 1024 res//