function WriteEmbed(emb_id){ 
    document.write(document.getElementById(emb_id).value);
}

function changeBG(objRow, mouseState)


    {
    if (mouseState == 'on')


        {
        	sColor = '#BCF3A7';
    }
    else if (mouseState == 'off')


        {
        	sColor = '#FFFFFF';
    }
    objRow.bgColor = sColor;
}

