// JavaScript Document
function email_validation(){

	return true;
}

var x,y;
document.onclick = hide;

function change_back(td_id)
{
	document.getElementById(td_id).style.borderWidth ="0";
	document.getElementById(td_id).style.backgroundColor = "";	//bgcolor
}

function change(td_id)
{
	document.getElementById(td_id).style.backgroundColor = "#DDDDDD";	//bgcolor
	document.getElementById(td_id).style.borderWidth ="0";
	document.getElementById(td_id).style.borderColor = "#315FC8";

}

function hide()
{
	if (document.getElementById("PopupMenu").style.visibility == "visible")
	{
		if ((event.x < x-5) || (event.y < y-5) || (event.x > x+150) || (event.y > y+180))
			document.getElementById("PopupMenu").style.visibility = "hidden";
	}
}
document.oncontextmenu=function(){
	x = event.offsetX;
	y = event.offsetY;


	x1 = event.x;
	y1 = event.y;


	window.setTimeout("click()",10);
	return false;
}
function click()
{
	if (x1 > (screen.width - 180))
	x = x - 150

	if (y1 > (screen.height - 200))
	y = y - 200

	document.getElementById("PopupMenu").style.top= y;
	document.getElementById("PopupMenu").style.left= x;
	document.getElementById("PopupMenu").style.visibility = "visible";
}
