//Confirm Function
function confirmPop(page, message)
{
	if (confirm(message))
	{
		
		confirmWindow = window.open(page,'_blank','scrollbars=yes,resizable=yes,location=yes,directories=yes,menubar=yes,status=yes,toolbar=yes');
	}
	else 
	{
		return false;
	}
}