<!--

function setEvents(tableindex)
{
var tablenumber = new Array();
var tableindex;
var numm;
//numm = tableindex.substring(10,11);
//alert(numm);
for (var ii=0;ii<3;ii++) {
var table1 = document.getElementById(tableindex+1);

if (table1 != null) {
var table = table1;
var len = table.rows.length;
for (var i = 0; i < len; i++)
{
var tr = table.rows[i];
tr.onmouseover = function omo() {this.bgColor = '#E7F5FD';};
tr.onmouseout = function omo() {this.bgColor = ''};
}

}


}
}

/*
function setEvents1()
{
var tableindex = 'hilighting1';
var table1 = document.getElementById(tableindex);
var table = table1;
//alert(table1);
var len = table.rows.length;
for (var i = 0; i < len; i++)
{
var tr = table.rows[i];
tr.onmouseover = function omo() {this.bgColor = '#fff8ed'};
tr.onmouseout = function omo() {this.bgColor = ''};
}
}
*/


/*

var table1 = document.className('prodtable');
var len1 = table1.rows.length;
for (var i = 0; i < len1; i++)
{
var tr1 = table1.rows[i];
tr1.onmouseover = function omo() {this.bgColor = 'white'};
tr1.onmouseout = function omo() {this.bgColor = ''};
}

}
*/
//-->>

function mail_hide(user,domain,zone){
	document.write('<a href="mailto:' + user + '@' + domain + '.' + zone + '">' + user + '@' + domain + '.' + zone + '</a>');
}

