// Used to display popup confirmation window
// strMessage = message to be displayed
// strCallPage = page to call if message confirmed
function confirmAction(strMessage, strCallPage)
{
	if (confirm(strMessage)){
		// Create new window to perform action
		window.location = strCallPage;
	}
}