function setColor(color, rowid)
{
	row = document.getElementById(rowid);
	
	
    if(color =='' || typeof(row.style) =='undefined')
    {
        return false;
    }
    
    if(typeof(document.getElementsByTagName) !='undefined')
    {
        var cells = row.getElementsByTagName('td');
    }
    else if(typeof(row.cells) !='undefined')
    {
        var cells = row.cells;
    }
    else
    {
        return false;
    }

    var numcells = cells.length;
    
    for (var c = 0; c < numcells; c++)
    {
        cells[c].style.backgroundColor = color;
    }
    
    return true;
}

function email(name, site, cssclass) {
	document.write("<"+"a href=\"mailto:");
	document.write(name+"@");
	document.write(site+"\"");
	if (cssclass && cssclass != "") document.write(" class=\""+cssclass+"\"");
	document.write(">"+name);
	document.writeln("@"+site+"<"+"/a>");
}