function confirmMessage(strMessage, target){
	if (confirm(strMessage)){
		window.location.href = target
	}
}

