function essClick(url,target)
{
	if(target)
	{
		window.open(url,target)
	}
	else
	{
		window.location.href=url;
	}
	return false;
}