﻿
function MOVM(obj)
{
    //obj.style.backgroundColor = '#fafafa';
    //obj.style.border = 'solid 1px #cccccc';
    obj.style.textDecoration = 'underline';
    //obj.style.color = '#000000';
    obj.style.cursor = 'pointer';
}
function MOUM(obj)
{
    //obj.style.backgroundColor = '#ffffff';
    //obj.style.border = 'solid 1px #ffffff';
    obj.style.textDecoration = 'none';
    obj.style.cursor = 'normal';
}

if (document.getElementById('divContent') != null)
{
    document.getElementById('divContent').style.overflow = 'auto';
    document.getElementById('divContent').style.height = '130px';
}
function MC(obj)
{
    window.location.href = obj.innerHTML.substring(obj.innerHTML.indexOf('href=')+6, obj.innerHTML.indexOf('.html')+5);
}


