function confrm(){
		if(confirm("Are you sure you want to delete record?")){
		return true;
		}else{
		return false;
		}
		}
