function confirmSubmit(msg){
	var agree = window.confirm(msg);
	if (agree) 
		return true;
	else
		return false;
}
