    private void open_photo(){
    	Intent intent = new Intent();
		intent.setType("image/*");
		intent.setAction(Intent.ACTION_GET_CONTENT); 
		startActivityForResult(intent, OPEN_PHOTO);
    }