function confirmDelete(url, message){
	try{
		if(confirm(message))
			location.href = url;
	}catch(e){
	}
}

function confirmRedirect(url, message){
	try{
		if(confirm(message))
			location.href = url;
	}catch(e){
	}
}
