

var cur_id = '';
var pre_id = '';

function showClickin( id )
{
	var content_slide = "clickinslide_";
        var tab_id = "linktab_";
        cur_id = id;
        if(document.getElementById(content_slide+cur_id))
        {
                document.getElementById(content_slide+cur_id).style.display = 'block';

        }
        if(document.getElementById(content_slide+pre_id))
        {
                document.getElementById(content_slide+pre_id).style.display = 'none';
        }

        else
        {
                pre_id = '1';
                if( cur_id != pre_id )
                {
                        document.getElementById(content_slide+pre_id).style.display = 'none';
                }

        }

	pre_id = cur_id;
	
	return;
}

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:Akshar Unicode, AA_NAGARI_SHREE_L2, Gurumaa, Osho,Arial;font-size:14px;color:#9A0003!important;background-color:#FFFFFF; width: auto;padding:0px;');
		
	}
	if( cur_id != pre_id )
	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:Akshar Unicode, AA_NAGARI_SHREE_L2, Gurumaa, Osho,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:Akshar Unicode, AA_NAGARI_SHREE_L2, Gurumaa, Osho,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='/images/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 = "/images/thumbs_up_new.jpg";

	var img_up2 = new Image();
	img_up2.src = "/images/thumbs_up_new1.jpg";

	var img_down1 = new Image();
	img_down1.src = "/images/thumbs_down_new.jpg";

	var img_down2 = new Image();
	img_down2.src = "/images/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 = "";
            }
        }
    }
}

var toFcs=null;
function p_o(o){return document.getElementById(o);}
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(did,cid,htm){
    var div=p_o(did);
    if(div==null)return;
    var newT=false;
    var tab=p_o(cid);
    if(!tab){
        tab=document.createElement('div');
        tab.setAttribute('id',cid);
        newT=true;
    }
    tab.className='dn';
    tab.innerHTML=htm;
    if(newT)div.appendChild(tab);
}
function allLI(arg) {
    if (p_o(arg)) {
        if (tablisttag==null)tablisttag='li';
        var x = p_o((arg)).getElementsByTagName(tablisttag).length;
        while (x>0) {
            if (p_o((arg+x)))p_o((arg+x)).className="";
            if (p_o((arg+'a'+x)))p_o((arg+'a'+x)).className="";
            x--;
        }
    }
}
function selTab(arg,i){
    if(arg!=null){
        allLI(arg);
        lidx = (arg +i);
        liadx = (arg+'a'+i);
    }
    if(arg == 'r'){
        p_o(lidx).className="curr";
    }else if(arg!=null){
        if (p_o(lidx))p_o(lidx).className="over";
        if (p_o(liadx)){
            if(dlscheme[i]){
                p_o(liadx).className="sel "+ dlscheme[i];
            }else{
                p_o(liadx).className="sel";
            }
        }
    }
}
function pGet(url,i,arg,id,cback,frce,fcsId){
    var cid=id+i;
    toFcs=fcsId;
    if((frce!=null&&frce)||showTab(id,cid,cback)==false){
        var uid=(new Date()).getTime();
        url+='&uid='+uid+'&cid='+cid;
        if(arg!=null)url+='&targ='+arg;
        if(i!=null)url+='&tid='+i;
        if(cback!=null)url+='&cback='+escape(cback);
    }else{
        selTab(arg,i);
    }
}
function fcs(id){
    if(id==null){
        if(toFcs==null)return;
        id=toFcs;
    }
    var o=p_o(id);
    toFcs=null;
    if(!o)return;
    if(o.getAttribute("tabIndex")==null){
        switch(o.nodeName.toLowerCase()){
            case 'a':
            case 'body':
            case 'button':
            case 'frame':
            case 'iframe':
            case 'img':
            case 'input':
            case 'object':
            case 'select':
            case 'textarea':
                break;
            default:
                o.setAttribute("tabIndex","-1");
                break;
        }
    }
    if(o.focus){
        if(document.all){
            o.focus();
            o.focus(); 
        }else{
            setTimeout('p_o("' + o.id + '").focus()', 0);
        }
    }
}
function ae(o,et,fn){
    var x;
    if(x=o.addEventListener)x(et,fn,0);
    else if(x=o.attachEvent){
        o['e'+et+fn]=fn;
        o[et+fn]=function(){o['e'+et+fn](window.event);}
        x('on'+et,o[et+fn]);
    }
}
function omo(id){
    s_objectID=id;
}

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(typ,num){
    var fcsId='dlC';
    dlini=true;
    dllast=dlnum;
    switch(typ){
        case 'NUM':
            if(dlnum==num)return false;
            clrT();
            dlnum=num;
            psed=true;
            break;
        case 'BAK':
            clrT();
            dlnum--;
            psed=true;
            break;
        case 'FWD':
            clrT();
            dlnum++;
            break;
        default:
            if(!psed) dlnum++;
            fcsId=null;
            break;
    }
    if(dlnum>nDls){
        dlnum=1;
    }else if(dlnum<1){
        dlnum=nDls;
    }
    if(nDls!=1){
        var pUrl = '';
        if(dlpops['dl'+dlnum]) {
            pUrl += '&dlitem='+dlpops['dl'+dlnum];
        }
        pGet('',dlnum,'dlt','dlC','dlc()',null,fcsId);
    }

    if (p_o("dyn_sqrblock")) {
        for (var i=1; i<=nDls; i++) {
            if (p_o("dl_sqr"+i)) {
                if (i == dlnum)
                    p_o("dl_sqr"+i).style.background = "#FFF";
                else
                    p_o("dl_sqr"+i).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(id,once) {
    if(!(o=p_o(id)))return;
    if(once && troflags[id]){
        return;
    }
    var d=o.innerHTML;
    var urls=d.split(",");
    if(once)troflags[id] = 1;
}
function clrT(){
    if(to){
        clearTimeout(to);
    to=null;
    }
}

ae(window,'load',dlinit);

function getdldur(dlnum) {
    if (o=p_o('dlcyc'+dlnum)) {
        return (o.innerHTML * 1500);
    }
    return dldur;
}


//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//
