function overUnderLine(obj)
{
obj.style.textDecoration = "underline";
}
function outSimple(obj)
{
obj.style.textDecoration = "none";
}

function pointerChange(obj)
{
obj.style.cursor = "pointer";
}
function overGreenBarLinks(id)
{
document.getElementById(id).style.textDecoration = "underline";
}

function outGreenBarLinks(id)
{
document.getElementById(id).style.textDecoration = "none";
}

function picHandler(id,path)
{
document.getElementById(id).src = path;
}

