﻿
ord = Math.random() * 10000000000000000;
var int_Clicks1 = 0;
var int_Clicks2 = 0;

function ClearText(control, variabletext) {
    switch (variabletext) {
        case 'search':
            if (int_Clicks1 == 0) {
                control.value = '';
                int_Clicks1++;
            }
            break;
        case 'login':
            if (int_Clicks2 == 0) {
                control.value = '';
                int_Clicks2++;
            }
            break;
    }
}

function ToggleDisplay(control) {
    var item = document.getElementById(control);
    if (item.style.display == 'none') {
        item.style.display = 'block';
    }
    else {
        item.style.display = 'none';
    }
}
function ToggleText(parent, idvalue, first, second) {
    var item = parent.children[idvalue];
    if (item.innerHTML == first)
        item.innerHTML = second;
    else item.innerHTML = first;
    return false;
}

function Master_Menu_Hover(str_Item) {

    // hide all elements
    document.getElementById('span_technology').style['display'] = 'none';
    document.getElementById('div_minibar_technology').style.backgroundColor = '#FFFFFF';
    document.getElementById('span_business').style['display'] = 'none';
    document.getElementById('div_minibar_business').style.backgroundColor = 'White';
    document.getElementById('span_geographic').style['display'] = 'none';
    document.getElementById('div_minibar_geographic').style.backgroundColor = 'White';
    document.getElementById('span_plus').style['display'] = 'none';
    document.getElementById('div_minibar_plus').style.backgroundColor = 'White';
    document.getElementById('span_event').style['display'] = 'none';
    document.getElementById('div_minibar_event').style.backgroundColor = 'White';

    if (str_Item == 'none') {
    }
    else {
        if (str_Item == 'technology')
            document.getElementById('div_minibar_technology').style.backgroundColor = '#D9D1C4';
        else if (str_Item == 'business')
            document.getElementById('div_minibar_business').style.backgroundColor = '#D8CBDC';
        else if (str_Item == 'geographic')
            document.getElementById('div_minibar_geographic').style.backgroundColor = '#D5F7E4';
        else if (str_Item == 'plus')
            document.getElementById('div_minibar_plus').style.backgroundColor = '#CEE9FF';
        else if (str_Item == 'event')
            document.getElementById('div_minibar_event').style.backgroundColor = '#FCE6DC';
        document.getElementById('span_' + str_Item).style['display'] = 'block';
        
    }
    return false;
}

function TopStories_ShowTab(id) {
    if (id == 'news') {
        document.getElementById('tab_News').style['display'] = 'block';
        document.getElementById('tab_Views').style['display'] = 'none';
        document.getElementById('tab_PR').style['display'] = 'none';
        document.getElementById('tab_WP').style['display'] = 'none';
        document.getElementById('img_TS_NewsButton').src = '/img/button_selected.png';
        document.getElementById('img_TS_ViewsButton').src = '/img/button_unselected.png';
        document.getElementById('img_TS_PRButton').src = '/img/button_unselected.png';
        document.getElementById('img_TS_WPButton').src = '/img/button_unselected.png';
        document.getElementById('div_TS_News').className = 'Charcoal_Background TopStories_Button_Sel';
        document.getElementById('div_TS_VIEWS').className = 'Theme_Background TopStories_Button_UnSel';
        document.getElementById('div_TS_PR').className = 'Theme_Background TopStories_Button_UnSel';
        document.getElementById('div_TS_WP').className = 'Theme_Background TopStories_Button_UnSel';
    }
    if (id == 'views') {
        document.getElementById('tab_News').style['display'] = 'none';
        document.getElementById('tab_Views').style['display'] = 'block';
        document.getElementById('tab_PR').style['display'] = 'none';
        document.getElementById('tab_WP').style['display'] = 'none';
        document.getElementById('img_TS_NewsButton').src = '/img/button_unselected.png';
        document.getElementById('img_TS_ViewsButton').src = '/img/button_selected.png';
        document.getElementById('img_TS_PRButton').src = '/img/button_unselected.png';
        document.getElementById('img_TS_WPButton').src = '/img/button_unselected.png';
        document.getElementById('div_TS_News').className = 'Theme_Background TopStories_Button_UnSel';
        document.getElementById('div_TS_VIEWS').className = 'Charcoal_Background TopStories_Button_Sel';
        document.getElementById('div_TS_PR').className = 'Theme_Background TopStories_Button_UnSel';
        document.getElementById('div_TS_WP').className = 'Theme_Background TopStories_Button_UnSel';
    }
    if (id == 'pr') {
        document.getElementById('tab_News').style['display'] = 'none';
        document.getElementById('tab_Views').style['display'] = 'none';
        document.getElementById('tab_PR').style['display'] = 'block';
        document.getElementById('tab_WP').style['display'] = 'none';
        document.getElementById('img_TS_NewsButton').src = '/img/button_unselected.png';
        document.getElementById('img_TS_ViewsButton').src = '/img/button_unselected.png';
        document.getElementById('img_TS_PRButton').src = '/img/button_selected.png';
        document.getElementById('img_TS_WPButton').src = '/img/button_unselected.png';
        document.getElementById('div_TS_News').className = 'Theme_Background TopStories_Button_UnSel';
        document.getElementById('div_TS_VIEWS').className = 'Theme_Background TopStories_Button_UnSel';
        document.getElementById('div_TS_PR').className = 'Charcoal_Background TopStories_Button_Sel';
        document.getElementById('div_TS_WP').className = 'Theme_Background TopStories_Button_UnSel';
    }
    if (id == 'wp') {
        document.getElementById('tab_News').style['display'] = 'none';
        document.getElementById('tab_Views').style['display'] = 'none';
        document.getElementById('tab_PR').style['display'] = 'none';
        document.getElementById('tab_WP').style['display'] = 'block';
        document.getElementById('img_TS_NewsButton').src = '/img/button_unselected.png';
        document.getElementById('img_TS_ViewsButton').src = '/img/button_unselected.png';
        document.getElementById('img_TS_PRButton').src = '/img/button_unselected.png';
        document.getElementById('img_TS_WPButton').src = '/img/button_selected.png';
        document.getElementById('div_TS_News').className = 'Theme_Background TopStories_Button_UnSel';
        document.getElementById('div_TS_VIEWS').className = 'Theme_Background TopStories_Button_UnSel';
        document.getElementById('div_TS_PR').className = 'Theme_Background TopStories_Button_UnSel';
        document.getElementById('div_TS_WP').className = 'Charcoal_Background TopStories_Button_Sel';
    }

    return false;
}


var index = 0;
var indexMax = 7;
function ES_SlideNext() {
    index = index + 1;
    if (index > indexMax) {
        index = index - 1;
    }
    else {
        sp.showPanel('ES_item' + index);
    }
    return false;
}
function ES_SlidePrevious() {
    index = index - 1;
    if (index == 0) {
        index = index + 1;
    }
    else {
        sp.showPanel('ES_item' + index);
    }
    return false;
}
function ShowYears(sender, e) {
    sender._switchMode('years');
    return false;
}
