function confirmEnter(mes){
var agree=confirm(mes);
if (agree)
	return true ;
else
	return false ;
}
