function delete_alert(address)
{
	if(confirm("Are You Sure you want to erase it!"))
{
	window.location=address;
}
else
{
	return false;
}
}
