// JavaScript Document
function MAY_SetImage(MAY_ObjectId,MAY_Image)
{
document.getElementById(MAY_ObjectId).src=MAY_Image;
}

function MAY_SetBackgroundImage(MAY_ObjectId,MAY_Image)
{
document.getElementById(MAY_ObjectId).background=MAY_Image;
}

function MAY_SetBackground(MAY_ObjectId,MAY_Color)
{
document.getElementById(MAY_ObjectId).bgColor=MAY_Color;
}

function MAY_SetColor(MAY_ObjectId,MAY_Color)
{
document.getElementById(MAY_ObjectId).style.color=MAY_Color;
}

