
function sp_ne_over(link) 
{  
    link.style.textDecoration = 'none';
    return true; 
}
function sp_ne_out(link)
{
    link.style.textDecoration = 'underline';
    return true;
}

function sp_teachingsfromwebinars_over(link) 
{  
    link.style.color = '#fff780';
    return true; 
}
function sp_teachingsfromwebinars_out(link)
{
    link.style.color = '#FFFFFF';
    return true;
}

function fp_over(link) 
{  
    link.style.textDecoration = 'none';
    return true; 
}
function fp_out(link)
{
    link.style.textDecoration = 'underline';
    return true;
}

function cp_over(link) 
{  
    link.style.textDecoration = 'none';
    return true; 
}
function cp_out(link)
{
    link.style.textDecoration = 'underline';
    return true;
}

function popup(mylink, windowname)
{
    if (! window.focus)
    return true;

    var href;
    if (typeof(mylink) == 'string')
        href=mylink;
    else
        href=mylink.href;

    window.open(href, windowname, 'width=600,height=300,scrollbars=yes');
    return false;
}
