function confirm_action()
{

	userconfirm = window.confirm("Are you sure you wish to carry out this action?");
		
		if (check_confirm(userconfirm) == true)
		{
			return true;
		}
	
		else
		{
			return false;
		}
}

function check_confirm(userconfirm)
{

	if (userconfirm == true)
	{
		return true;
	}
	
	else
	{
		return false;
	}
}

function image_rollover(image_name)
{
	document.getElementById('' + image_name + '').style.display = 'block';
}

function image_restore(image_name)
{
	document.getElementById('' + image_name + '').style.display = 'none';
}