var CurrentColor;

function OpenWin_InstMsg()
{
	window.open('SendMsg.aspx', 'InstMsg', 'left=200, top=100, height=400, width= 640, status=no, resizable= no, scrollbars= yes, toolbar= no, location= no, menubar= no');
}

function ColorRow(obj, act)
{
    if (act==0) {
        CurrentColor=obj.style.backgroundColor;
        obj.style.backgroundColor='aquamarine';
    }
    else
        obj.style.backgroundColor=CurrentColor;
}


