/*
function revealModal(divID) {
    //window.onscroll = function() { document.getElementById(divID).style.top = document.body.scrollTop; };
    window.scroll(0, 0);
    document.getElementById(divID).style.display = "block";
    document.getElementById(divID).style.top = document.body.scrollTop;
    fireOmniture();
}

function hideModal(divID) {
    document.getElementById(divID).style.display = "none";
}

function fireOmniture() {
    s.pageName = 'Ask A Question';
    s.channel = 'Expert Buzz';
    s.events = '';
    void (s.t());
}
*/

function revealModal(divID, type) {
    //window.onscroll = function() { document.getElementById(divID).style.top = document.body.scrollTop; };
    window.scroll(0, 0);
    document.getElementById(divID).style.display = "block";
    document.getElementById(divID).style.top = document.body.scrollTop;
    if (type == 'ask') { fireOmniture(); } else {fireOmniture2(); }
}

function revealModal_wisdom(divID, type) {
    //window.onscroll = function() { document.getElementById(divID).style.top = document.body.scrollTop; };
    window.scroll(0, 0);
    document.getElementById(divID).style.display = "block";
    document.getElementById(divID).style.top = document.body.scrollTop;

//    document.getElementById('sendThisValue').value = ing;
    fireOmniture3();
//    window.frames[1].document.getElementById('message').value = "from js";
}

function hideModal(divID) {
    document.getElementById(divID).style.display = "none";
}

function fireOmniture() {
    s.pageName = 'Ask A Question';
    s.channel = 'Expert Buzz';
    s.events = '';
    void (s.t());
}

function fireOmniture2() {
    s.pageName = 'Share with Friends';
    s.channel = 'Forms';
    s.events = '';
    void (s.t());
}

function fireOmniture3() {
    s.pageName = 'Share your Wisdom';
    s.channel = 'Forms';
    s.events = '';
    void (s.t());
}