// JavaScript Document

function delete_href(href, massage)
{
	var result = window.confirm(massage);
	if(result)
	{
		document.location = href;
	}
}


// Right click
function click() { 
	if (event.button == 2) alert("Esencia © All rights reserved.\nDo not copy images or content from this site."); 
} 
document.onmousedown = click; 
