//Interstitial Content Box v1.1- http://www.dynamicdrive.com/dynamicindex17/interstitial.htm
//Last modified: Nov 26th, 06' (New: disable webpage scrollbar, auto hide after x seconds options, 

var interstitialBox = {
    //1) list of files on server to randomly pick from and display
    displayfiles: ['index_salah.htm'],

    //2) display freqency: ["frequency_type", "frequency_value"]
    displayfrequency: ["chance", "1"],

    //3) HTML for the header bar portion of the interstitial box
    //defineheader: '<div class="headerbar"><a href="#" onClick="javascript:interstitialBox.`(); return false"><img src="closeit.gif" style="border: 0" title="Close Box"/></a></div>',

    //4) cookie setting: ["cookie_name", "cookie_path"]
    cookiesetting: ["stitialcookie", "path=/"],

    //5) bust caching of pages fetched via Ajax?
    ajaxbustcache: true,

    //6) Disable browser scrollbars while interstitial is shown (Only applicable in IE7/Firefox/Opera8+. IE6 will just auto scroll page to top)?
    disablescrollbars: true,

    //7) Auto hide Interstitial Box after x seconds (0 for no)?
    autohidetimer: 0,

    ////No need to edit beyond here//////////////////////////////////

    ie7: window.XMLHttpRequest && document.all && !window.opera,
    ie7offline: this.ie7 && window.location.href.indexOf("http") == -1, //check for IE7 and offline
    launch: false,
    scrollbarwidth: 16,

    ajaxconnect: function(url, thediv) {
        var page_request = false
        var bustcacheparameter = ""
        if (window.XMLHttpRequest && !this.ie7offline) // if Mozilla, IE7 online, Safari etc
            page_request = new XMLHttpRequest()
        else if (window.ActiveXObject) { // if IE6 or below, or IE7 offline (for testing purposes)
            try {
                page_request = new ActiveXObject("Msxml2.XMLHTTP")
            }
            catch (e) {
                try {
                    page_request = new ActiveXObject("Microsoft.XMLHTTP")
                }
                catch (e) { }
            }
        }
        else
            return false
        page_request.onreadystatechange = function() {
            interstitialBox.loadpage(page_request, thediv)
        }
        if (this.ajaxbustcache) //if bust caching of external page
            bustcacheparameter = (url.indexOf("?") != -1) ? "&" + new Date().getTime() : "?" + new Date().getTime()
        page_request.open('GET', url + bustcacheparameter, true)
        page_request.send(null)
    },

    loadpage: function(page_request, thediv) {
        if (page_request.readyState == 4 && (page_request.status == 200 || window.location.href.indexOf("http") == -1)) {
            document.getElementById("interContent").innerHTML = page_request.responseText
        }
    },

    createcontainer: function() {
        //write out entire HTML for Interstitial Box:
        document.write('<div id="interContainer">' + this.defineheader + '<div id="interContent"></div></div><div id="interVeil"></div>')
        this.interContainer = document.getElementById("interContainer") //reference interstitial container
        this.interVeil = document.getElementById("interVeil") //reference veil
        this.standardbody = (document.compatMode == "CSS1Compat") ? document.documentElement : document.body //create reference to common "body" across doctypes
    },


    showcontainer: function() {
        if (this.interContainer.style.display == "none") return //if interstitial box has already closed, just exit (window.onresize event triggers function)
        var ie = document.all && !window.opera
        var dom = document.getElementById
        var scroll_top = (ie) ? this.standardbody.scrollTop : window.pageYOffset
        var scroll_left = (ie) ? this.standardbody.scrollLeft : window.pageXOffset
        var docwidth = (ie) ? this.standardbody.clientWidth : window.innerWidth - this.scrollbarwidth
        var docheight = (ie) ? this.standardbody.clientHeight : window.innerHeight
        var docheightcomplete = (this.standardbody.offsetHeight > this.standardbody.scrollHeight) ? this.standardbody.offsetHeight : this.standardbody.scrollHeight
        var objwidth = this.interContainer.offsetWidth
        var objheight = this.interContainer.offsetHeight
        this.interVeil.style.width = docwidth + "px" //set up veil over page
        this.interVeil.style.height = docheightcomplete + "px" //set up veil over page
        this.interVeil.style.left = 0 //Position veil over page
        this.interVeil.style.top = 0 //Position veil over page
        this.interVeil.style.visibility = "visible" //Show veil over page
        this.interContainer.style.left = docwidth / 2 - objwidth / 2 + "px" //Position interstitial box
        var topposition = (docheight > objheight) ? scroll_top + docheight / 2 - objheight / 2 + "px" : scroll_top + 5 + "px" //Position interstitial box
        this.interContainer.style.top = Math.floor(parseInt(topposition)) + "px"
        this.interContainer.style.visibility = "visible" //Show interstitial box
        if (this.autohidetimer && parseInt(this.autohidetimer) > 0 && typeof this.timervar == "undefined")
            this.timervar = setTimeout("interstitialBox.closeit()", this.autohidetimer * 1000)
    },


    closeit: function() {
        this.interVeil.style.display = "none"
        this.interContainer.style.display = "none"
        if (this.disablescrollbars && window.XMLHttpRequest) //if disablescrollbars enabled and modern browsers- IE7, Firefox, Safari, Opera 8+ etc
            this.standardbody.style.overflow = "auto"
        if (typeof this.timervar != "undefined") clearTimeout(this.timervar)
    },

    getscrollbarwidth: function() {
        var scrollbarwidth = window.innerWidth - (this.interVeil.offsetLeft + this.interVeil.offsetWidth) //http://www.howtocreate.co.uk/emails/BrynDyment.html
        this.scrollbarwidth = (typeof scrollbarwidth == "number") ? scrollbarwidth : this.scrollbarwidth
    },

    hidescrollbar: function() {
        if (this.disablescrollbars) { //if disablescrollbars enabled
            if (window.XMLHttpRequest) //if modern browsers- IE7, Firefox, Safari, Opera 8+ etc
                this.standardbody.style.overflow = "hidden"
            else //if IE6 and below, just scroll to top of page to ensure interstitial is in focus
                window.scrollTo(0, 0)
        }
    },

    dotask: function(target, functionref, tasktype) { //assign a function to execute to an event handler (ie: onunload)
        var tasktype = (window.addEventListener) ? tasktype : "on" + tasktype
        if (target.addEventListener)
            target.addEventListener(tasktype, functionref, false)
        else if (target.attachEvent)
            target.attachEvent(tasktype, functionref)
    },

    initialize: function() {
        this.createcontainer() //write out interstitial container
        this.ajaxconnect(this.displayfiles[Math.floor(Math.random() * this.displayfiles.length)], this.interContainer) //load page into content via ajax
        this.dotask(window, function() { interstitialBox.hidescrollbar(); interstitialBox.getscrollbarwidth(); setTimeout("interstitialBox.showcontainer()", 100) }, "load")
        this.dotask(window, function() { interstitialBox.showcontainer() }, "resize")
    }
}

/////////////End of interstitialBox object declaration here ////////////////////////////////

function getCookie(Name) {
    var re = new RegExp(Name + "=[^;]+", "i"); //construct RE to search for target name/value pair
    if (document.cookie.match(re)) //if cookie found
        return document.cookie.match(re)[0].split("=")[1] //return its value
    return null
}

function setCookie(name, value, days) {
    var expireDate = new Date()
    //set "expstring" to either an explicit date (past or future)
    if (typeof days != "undefined") { //if set persistent cookie
        var expstring = expireDate.setDate(expireDate.getDate() + parseInt(days))
        document.cookie = name + "=" + value + "; expires=" + expireDate.toGMTString() + "; " + interstitialBox.cookiesetting[1]
    }
    else //else if this is a session only cookie setting
        document.cookie = name + "=" + value + "; " + interstitialBox.cookiesetting[1]
}


var stitialvars = new Object() //temporary object to reference/ shorthand certain interstitialBox properties
stitialvars.freqtype = interstitialBox.displayfrequency[0] //"chance" or "cookie"
stitialvars.cookieduration = interstitialBox.displayfrequency[1] //"session" or int (integer specifying number of days)
stitialvars.cookiename = interstitialBox.cookiesetting[0] //name of cookie to use


if (stitialvars.freqtype == "chance") { //IF CHANCE MODE
    if (Math.floor(Math.random() * interstitialBox.displayfrequency[1]) == 0)
        interstitialBox.launch = true
}
else if (stitialvars.freqtype == "cookie" && stitialvars.cookieduration == "session") { //IF "SESSION COOKIE" MODE
    if (getCookie(stitialvars.cookiename + "_s") == null) { //if session cookie is empty
        setCookie(stitialvars.cookiename + "_s", "loaded")
        interstitialBox.launch = true
    }
}
else if (stitialvars.freqtype == "cookie" && typeof parseInt(stitialvars.cookieduration) == "number") { //IF "PERSISTENT COOKIE" MODE
    if (getCookie(stitialvars.cookiename) == null || parseInt(getCookie(stitialvars.cookiename)) != parseInt(stitialvars.cookieduration)) { //if persistent cookie is empty or admin has changed number of days to persist from that of the stored value (meaning, reset it)
        setCookie(stitialvars.cookiename, stitialvars.cookieduration, stitialvars.cookieduration)
        interstitialBox.launch = true
    }
}

//if (interstitialBox.launch)
//interstitialBox.initialize()
var interContainer = '';
var standardbody = '';
var scrollbarwidth = 16;
var interVeil = '';

function createcontainer() {
    standardbody = (document.compatMode == "CSS1Compat") ? document.documentElement : document.body //create reference to common "body" across doctypes
    //write out entire HTML for Interstitial Box:
    defineheader = '<div class="headerbar" id="headerbar"><a href="javascript:void(0)" onClick="closeit(); return false"><img src="App_Themes/Grey/images/closeit.png" style="border: 0" title="Close Box"/></a></div>',
document.write('<div id="interContainer">' + defineheader + '<div id="interContent"></div></div><div id="interVeil"></div>')
    interContainer = document.getElementById("interContainer") //reference interstitial container
    //this.interVeil=document.getElementById("interVeil") //reference veil
    //this.standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes
}

function showcontainer() {
    standardbody = (document.compatMode == "CSS1Compat") ? document.documentElement : document.body //create reference to common "body" across doctypes
    interVeil = document.getElementById("interVeil")
    //var interContainer= document.getElementById("interContainer");
    if (interContainer.style.display == "none") {
        interVeil.style.display = "block"
        interContainer.style.display = "block"
        //return //if interstitial box has already closed, just exit (window.onresize event triggers function)
    }
    var ie = document.all && !window.opera
    var dom = document.getElementById
    var scroll_top = (ie) ? standardbody.scrollTop : window.pageYOffset
    var scroll_left = (ie) ? standardbody.scrollLeft : window.pageXOffset
    var docwidth = (ie) ? standardbody.clientWidth : window.innerWidth - scrollbarwidth
    var docheight = (ie) ? standardbody.clientHeight : window.innerHeight
    var docheightcomplete = (standardbody.offsetHeight > standardbody.scrollHeight) ? standardbody.offsetHeight : standardbody.scrollHeight

    var objwidth = interContainer.offsetWidth
    var objheight = interContainer.offsetHeight

    interVeil.style.width = docwidth + "px" //set up veil over page
    interVeil.style.height = docheightcomplete + "px" //set up veil over page
    interVeil.style.left = 0 //Position veil over page
    interVeil.style.top = 0 //Position veil over page
    interVeil.style.visibility = "visible" //Show veil over page
    interContainer.style.left = docwidth / 2 - objwidth / 2 + "px" //Position interstitial box
    //var topposition=(docheight>objheight)? scroll_top+docheight/2-objheight/2+"px" : scroll_top+5+"px" //Position interstitial box
    var topposition = scroll_top + 25 + "px"  //Position interstitial box

    //alert(topposition);
    interContainer.style.top = Math.floor(parseInt(topposition)) + "px"
    interContainer.style.visibility = "visible" //Show interstitial box
}

function closeit() {
    disablescrollbars = true
    interVeil.style.display = "none"
    interContainer.style.display = "none"    
    showFlash();
    if (disablescrollbars && window.XMLHttpRequest) //if disablescrollbars enabled and modern browsers- IE7, Firefox, Safari, Opera 8+ etc
        standardbody.style.overflow = "auto"
}

function loadXMLDoc(url) {
    //document.getElementById('MostReadDiv').innerHTML='<img src="images/circle_animation.gif" alt="" >';

    jx.load(url, function(data) {
        //alert(data); // Do what you want with the 'data' variable.
        document.getElementById('MostReadDiv').innerHTML = data
    });

}

function ajaxconnect(url, thediv) {
    ie7 = window.XMLHttpRequest && document.all && !window.opera,
ie7offline = this.ie7 && window.location.href.indexOf("http") == -1, //check for IE7 and offline
ajaxbustcache = true
    var page_request = false
    var bustcacheparameter = ""
    if (window.XMLHttpRequest && !ie7offline) // if Mozilla, IE7 online, Safari etc
        page_request = new XMLHttpRequest()
    else if (window.ActiveXObject) { // if IE6 or below, or IE7 offline (for testing purposes)
        try {
            page_request = new ActiveXObject("Msxml2.XMLHTTP")
        }
        catch (e) {
            try {
                page_request = new ActiveXObject("Microsoft.XMLHTTP")
            }
            catch (e) { }
        }
    }
    else
        return false
    page_request.onreadystatechange = function() {
        loadpage(page_request, thediv)
    }
    if (ajaxbustcache) //if bust caching of external page
        bustcacheparameter = (url.indexOf("?") != -1) ? "&" + new Date().getTime() : "?" + new Date().getTime()
    page_request.open('GET', url + bustcacheparameter, true)
    page_request.send(null)
}

function loadpage(page_request, thediv) {
    if (page_request.readyState == 4 && (page_request.status == 200 || window.location.href.indexOf("http") == -1)) {
        document.getElementById("interContent").innerHTML = page_request.responseText
    }
}

function NewMainNewsNavTo1(current, navto) {
    try
    {
        ArrayLenghts1 = (MainNewsIds1.length) - 1;
        NewLocation1 = current + navto;

        start1 = NewLocation1;
        
        if (NewLocation1 > ArrayLenghts1) {
            NewLocation1 = ArrayLenghts1;
        }

        if (NewLocation1 <= 0) {
            NewLocation1 = 1;
        }
        
        ANMainNewsTitleDiv = document.getElementById("ANMainNewsTitle1");
        ANMainNewsAbstractDiv = document.getElementById("ANMainNewsAbstract1");
        ANMainNewsImageDiv = document.getElementById("ANMainNewsImage1");
        divMore = document.getElementById("divMore1");
    
        ANMainNewsTitleDiv.innerHTML = "<a href='" + MainNewsLinks1[NewLocation1] + "'>" + MainNewsTitles1[NewLocation1] + "</a>";
        ANMainNewsAbstractDiv.innerHTML = MainNewsAbstract1[NewLocation1];
        divMore.innerHTML = "<a href='" + MainNewsLinks1[NewLocation1] + "'>more</a>";
        
        if (MainNewsImage1[NewLocation1] != '') {
            if (MainNewsImageType1[NewLocation1] == '1') {
                ANMainNewsImageDiv.innerHTML = "<img runat='server' src='" + MainNewsImage1[NewLocation1].replace("~/", "") + "' />";
            }
            else {   
            
                ANMainNewsImageDiv.innerHTML = "<img src='http://i1.ytimg.com/vi/" +  MainNewsImage1[NewLocation1]+ "/default.jpg'/>";
              
            }
        }
        else {
            ANMainNewsImageDiv.innerHTML = "";
        }
    }
    catch(err)
    {
    }
}

function NewMainNewsNavTo2(current, navto) {
    try {
        ArrayLenghts2 = (MainNewsIds2.length) - 1;
        NewLocation2 = current + navto;

        start2 = NewLocation2;
        
        if (NewLocation2 > ArrayLenghts2) {
            NewLocation2 = ArrayLenghts2;
        }

        if (NewLocation2 <= 0) {
            NewLocation2 = 1;
        }

        ANMainNewsTitleDiv = document.getElementById("ANMainNewsTitle2");
        ANMainNewsAbstractDiv = document.getElementById("ANMainNewsAbstract2");
        ANMainNewsImageDiv = document.getElementById("ANMainNewsImage2");
        divMore = document.getElementById("divMore2");
        
        ANMainNewsTitleDiv.innerHTML = "<a href='" + MainNewsLinks2[NewLocation2] + "'>" + MainNewsTitles2[NewLocation2] + "</a>";
        ANMainNewsAbstractDiv.innerHTML = MainNewsAbstract2[NewLocation2];
        divMore.innerHTML = "<a href='" + MainNewsLinks2[NewLocation2] + "'>more</a>";
        
        if (MainNewsImage2[NewLocation2] != '') {
           
            if (MainNewsImageType2[NewLocation2] == '1') {
                ANMainNewsImageDiv.innerHTML = "<img runat='server' src='" + MainNewsImage2[NewLocation2].replace("~/", "") + "' />" ;
            }
            else {
                ANMainNewsImageDiv.innerHTML = "<img src='http://i1.ytimg.com/vi/" + MainNewsImage2[NewLocation2] + "/default.jpg'/>";
               
                
            }
        }
        else {
            ANMainNewsImageDiv.innerHTML = "";
        }
    }
    catch (err) {
    }
}

function NewMainNewsNavTo3(current, navto) {
    try {
        ArrayLenghts3 = (MainNewsIds3.length) - 1;
        NewLocation3 = current + navto;

        start3 = NewLocation3;
        
        if (NewLocation3 > ArrayLenghts3) {
            NewLocation3 = ArrayLenghts3;
        }

        if (NewLocation3 <= 0) {
            NewLocation3 = 1;
        }

        ANMainNewsTitleDiv = document.getElementById("ANMainNewsTitle3");
        ANMainNewsAbstractDiv = document.getElementById("ANMainNewsAbstract3");
        ANMainNewsImageDiv = document.getElementById("ANMainNewsImage3");
        divMore = document.getElementById("divMore3");
        
        ANMainNewsTitleDiv.innerHTML = "<a href='" + MainNewsLinks3[NewLocation3] + "'>" + MainNewsTitles3[NewLocation3] + "</a>";
        ANMainNewsAbstractDiv.innerHTML = MainNewsAbstract3[NewLocation3];
        divMore.innerHTML = "<a href='" + MainNewsLinks3[NewLocation3] + "'>more</a>";
        
        if (MainNewsImage3[NewLocation3] != '') {
            if (MainNewsImageType3[NewLocation3] == '1') {
                ANMainNewsImageDiv.innerHTML = "<img runat='server' src='" + MainNewsImage3[NewLocation3].replace("~/", "") + "' />";
             
            }
            else {

                ANMainNewsImageDiv.innerHTML = "<img src='http://i1.ytimg.com/vi/" + MainNewsImage3[NewLocation3] + "/default.jpg'/>";
           
            }
        }
        else {
            ANMainNewsImageDiv.innerHTML = "";
        }
    }
    catch (err) {
    }
}

function NewMainNewsNavTo4(current, navto) {
    try {
        ArrayLenghts4 = (MainNewsIds4.length) - 1;
        NewLocation4 = current + navto;

        start4 = NewLocation4;
        
        if (NewLocation4 > ArrayLenghts4) {
            NewLocation4 = ArrayLenghts4;
        }

        if (NewLocation4 <= 0) {
            NewLocation4 = 1;
        }

        ANMainNewsTitleDiv = document.getElementById("ANMainNewsTitle4");
        ANMainNewsAbstractDiv = document.getElementById("ANMainNewsAbstract4");
        ANMainNewsImageDiv = document.getElementById("ANMainNewsImage4");
        divMore = document.getElementById("divMore4");
        
        ANMainNewsTitleDiv.innerHTML = "<a href='" + MainNewsLinks4[NewLocation4] + "'>" + MainNewsTitles4[NewLocation4] + "</a>";
        ANMainNewsAbstractDiv.innerHTML = MainNewsAbstract4[NewLocation4];
        divMore.innerHTML = "<a href='" + MainNewsLinks4[NewLocation4] + "'>more</a>";
        
        if (MainNewsImage4[NewLocation4] != '') {
            if (MainNewsImageType4[NewLocation4] == '1') {
                ANMainNewsImageDiv.innerHTML = "<img src='" + MainNewsImage4[NewLocation4].replace("~/", "") + "' />";
            }
            else {

                ANMainNewsImageDiv.innerHTML = "<img src='http://i1.ytimg.com/vi/" + MainNewsImage4[NewLocation4] + "/default.jpg'/>";
              
            }
        }
        else {
            ANMainNewsImageDiv.innerHTML = "";
        }
    }
    catch (err) {
    }
}

function NewMainNewsNavTo5(current, navto) {
    try {
        ArrayLenghts5 = (MainNewsIds5.length) - 1;
        NewLocation5 = current + navto;

        start5 = NewLocation5;

        if (NewLocation5 > ArrayLenghts5) {
            NewLocation5 = ArrayLenghts5;
        }

        if (NewLocation5 <= 0) {
            NewLocation5 = 1;
        }

        ANMainNewsTitleDiv = document.getElementById("ANMainNewsTitle5");
        ANMainNewsAbstractDiv = document.getElementById("ANMainNewsAbstract5");
        ANMainNewsImageDiv = document.getElementById("ANMainNewsImage5");
        divMore = document.getElementById("divMore5");

        ANMainNewsTitleDiv.innerHTML = "<a href='" + MainNewsLinks5[NewLocation5] + "'>" + MainNewsTitles5[NewLocation5] + "</a>";
        ANMainNewsAbstractDiv.innerHTML = MainNewsAbstract5[NewLocation5];
        divMore.innerHTML = "<a href='" + MainNewsLinks5[NewLocation5] + "'>more</a>";

        if (MainNewsImage5[NewLocation5] != '') {
            if (MainNewsImageType5[NewLocation5] == '1') {
                ANMainNewsImageDiv.innerHTML = "<img src='" + MainNewsImage5[NewLocation5].replace("~/", "") + "' />";
            }
            else {

                ANMainNewsImageDiv.innerHTML = "<img src='http://i1.ytimg.com/vi/" + MainNewsImage5[NewLocation5] + "/default.jpg'/>";
              
            }
        }
        else {
            ANMainNewsImageDiv.innerHTML = "";
        }
    }
    catch (err) {
    }
}

function PausingAndPlaying(id, status, index, interval) {
    try {
        if (status == 1) {
            // 1 -> play & 0 -> pause
            NewsSlideShowID1 = setInterval("MainNewsSlideShow" + index + "()", interval)
        }
        else {
            clearInterval(id);
        }
        return true;
    }
    catch (err) {
        return false;
    }
}

function MainNewsSlideShow1() {
   
    try {
        ArrayLenghts1 = (MainNewsIds1.length) - 1;
        TheCurrent1 = 0;

        if (start1 < 1) {
            start1 = 1;
        }

        if (start1 < ArrayLenghts1) {
            TheCurrent1 = start1;
        } else {
            TheCurrent1 = 0;
            start1 = 0;
        }
        
        NewMainNewsNavTo1(TheCurrent1, 1);

    }
    catch (err) {
    }
}

function MainNewsSlideShow2() {

    try {
        ArrayLenghts2 = (MainNewsIds2.length) - 1;
        TheCurrent2 = 0;

        if (start2 < 1) {
            start2 = 1;
        }

        if (start2 < ArrayLenghts2) {
            TheCurrent2 = start2;
        } else {
            TheCurrent2 = 0;
            start2 = 0;
        }
        
        NewMainNewsNavTo2(TheCurrent2, 1);

    }
    catch (err) {
    }
}

function MainNewsSlideShow3() {

    try {
        ArrayLenghts3 = (MainNewsIds3.length) - 1;
        TheCurrent3 = 0;

        if (start3 < 1) {
            start3 = 1;
        }

        if (start3 < ArrayLenghts3) {
            TheCurrent3 = start3;
        } else {
            TheCurrent3 = 0;
            start3 = 0;
        }
        
        NewMainNewsNavTo3(TheCurrent3, 1);

    }
    catch (err) {
    }
}

function MainNewsSlideShow4() {

    try {
        ArrayLenghts4 = (MainNewsIds4.length) - 1;
        TheCurrent4 = 0;

        if (start4 < 1) {
            start4 = 1;
        }

        if (start4 < ArrayLenghts4) {
            TheCurrent4 = start4;
        } else {
            TheCurrent4 = 0;
            start4 = 0;
        }
        
        NewMainNewsNavTo4(TheCurrent4, 1);

    }
    catch (err) {
    }
}

function MainNewsSlideShow5() {

    try {
        ArrayLenghts5 = (MainNewsIds5.length) - 1;
        TheCurrent5 = 0;

        if (start5 < 1) {
            start5 = 1;
        }

        if (start5 < ArrayLenghts5) {
            TheCurrent5 = start5;
        } else {
        TheCurrent5 = 0;
        start5 = 0;
        }

        NewMainNewsNavTo5(TheCurrent5, 1);

    }
    catch (err) {
    }
}

if (navigator.appName == "Netscape") {
    var IE = 0
}

if (navigator.appName == "Microsoft Internet Explorer") {
    var IE = 1
}

