function nospam(name,domain) {
	document.write("<a href='mailto:"+name+"@"+domain+"'>"+name+"@"+domain+"</a>");
	}

function searcher(area,query) {
		location.href = area+".php?search="+query;
	}

function confirmDelete()
	{
	var agree=confirm("Are you sure you want to delete?");
	if (agree)
		return true;
	else
		return false;
	}