function confirmAction(msg) 
{
	var msg;
	//msg = "Are you sure you want to "+a+"?";
	//alert(msg);
	var agree = confirm(msg);
	if (agree)
		return true;
	else
		return false;
}