//Shows div popup commands for gridview
function mouseOverLinks(li)
{
    var li = document.getElementById(li);
	if (li.style.backgroundColor=="rgb(236, 159, 1)" || li.style.backgroundColor=="#ec9f01") {
		li.style.backgroundColor = "";
	} else {
		li.style.backgroundColor = "#EC9F01";
	}
}

function email()
{
var emailriddlerarray=[98,101,116,104,64,119,101,115,116,105,110,100,121,100,101,118,46,111,114,103]
var encryptedemail_id73='' //variable to contain encrypted email 
for (var i=0; i<emailriddlerarray.length; i++)
 encryptedemail_id73+=String.fromCharCode(emailriddlerarray[i])

document.write('<a href="mailto:'+encryptedemail_id73+'">'+encryptedemail_id73+'</a>')
}